mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
35 lines
563 B
SCSS
35 lines
563 B
SCSS
|
@import '../constants/colors';
|
||
|
@import '../constants/dimensions';
|
||
|
|
||
|
.urlbar {
|
||
|
width: 100%;
|
||
|
display: grid;
|
||
|
grid-template-columns: auto 1fr auto;
|
||
|
grid-template-rows: 1fr;
|
||
|
align-items: stretch;
|
||
|
align-self: stretch;
|
||
|
|
||
|
& > .dropdown > button {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
& > button,
|
||
|
& > .dropdown {
|
||
|
height: 100%;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: $hl-xxs;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
& > *:first-child {
|
||
|
padding-left: $padding-md;
|
||
|
padding-right: $padding-md;
|
||
|
}
|
||
|
|
||
|
& > *:last-child {
|
||
|
padding-right: $padding-md;
|
||
|
padding-left: $padding-md;
|
||
|
}
|
||
|
}
|