sigit.io/src/components/AppBar/style.module.scss

57 lines
930 B
SCSS
Raw Normal View History

@import '../../colors.scss';
.AppBar {
background-color: $background-color !important;
z-index: 1400 !important;
.AppBarIcon {
background-color: $btn-background-color !important;
margin-right: 10px;
}
.logoWrapper {
display: flex;
align-items: center;
height: 100%;
padding: 13px 0 13px 0;
box-sizing: border-box;
}
.AppBarLogoWrapper {
height: 60px;
width: 100px;
cursor: pointer;
justify-content: center;
align-items: center;
.logoWrapper {
margin-left: 20px;
img {
max-height: 100%;
max-width: 150px;
}
}
}
.AppBarUnAuth {
height: 60px;
cursor: pointer;
justify-content: space-between;
align-items: center;
display: flex;
width: 100%;
.logoWrapper {
img {
max-height: 100%;
max-width: 120px;
}
}
.loginBtn {
margin-right: 16px;
}
}
}