1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-09 01:52:57 +00:00
Files
ps-launcher/app/components/Header/Header.scss
2017-10-26 21:27:14 -05:00

64 lines
872 B
SCSS

@import '../../scss/variables.scss';
.header {
background: $dark-blue--2;
display: flex;
align-items: center;
height: 30px;
padding: 0 10px;
border-bottom: 1px solid $dark-blue--3;
}
.header__draggable-region {
-webkit-app-region: drag;
flex: 1;
height: 100%;
}
.header-icon {
& + & {
margin-left: 10px;
}
cursor: pointer;
border-color: $gray;
color: $gray;
&:hover {
border-color: $gray--1;
color: $gray--1;
}
}
.header-icon--minimize {
height: 12px;
width: 12px;
border-bottom: 2px solid;
}
.header-icon--maximize {
height: 10px;
width: 10px;
border: 2px solid;
}
.header-icon--close {
font-size: 30px;
}
.header__version {
span {
font-size: 12px;
position: relative;
bottom: 3px;
color: $blue--lighter;
}
img {
position: relative;
top: 3px;
margin-right: 3px;
}
}