mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-09 01:52:57 +00:00
23 lines
383 B
SCSS
23 lines
383 B
SCSS
@import '../../scss/variables.scss';
|
|
|
|
.sub-header {
|
|
background: $dark-blue--1;
|
|
border-bottom: 1px solid $dark-blue--3;
|
|
display: flex;
|
|
height: 100px;
|
|
overflow: auto;
|
|
|
|
.sub-header__item {
|
|
width: 100px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
|
|
&:hover, &.selected {
|
|
background: $dark-blue--3;
|
|
}
|
|
|
|
}
|
|
}
|