mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
1cf1037c93
* Started refactoring redux stores * Oh God huge refactor here * Sync contenst updates and nested folders * Fixed render tests * A bunch of tweaks
23 lines
370 B
Plaintext
23 lines
370 B
Plaintext
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
.banner {
|
|
background: @color-brand;
|
|
width: 100%;
|
|
color: @bg-super-light;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.banner__content {
|
|
margin: @padding-sm;
|
|
width: 100%;
|
|
}
|
|
|
|
.banner__close {
|
|
padding: @padding-sm @padding-md;
|
|
height: 100%;
|
|
}
|