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