23 lines
405 B
SCSS
23 lines
405 B
SCSS
|
@import '../../stylesheets/variables';
|
||
|
@import '../mixins';
|
||
|
|
||
|
.base {
|
||
|
height: 47px;
|
||
|
width: 100%;
|
||
|
border-bottom-width: 1px;
|
||
|
border-bottom-style: solid;
|
||
|
padding: 0 16px;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
flex-shrink: 0;
|
||
|
|
||
|
@include light-theme() {
|
||
|
border-bottom-color: $color-gray-15;
|
||
|
}
|
||
|
|
||
|
@include dark-theme() {
|
||
|
border-bottom-color: $color-gray-75;
|
||
|
}
|
||
|
}
|