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

70 lines
1.0 KiB
SCSS

@import '../../styles/colors.scss';
@import '../../styles/sizes.scss';
.AppBar {
background-color: $overlay-background-color !important;
height: $header-height;
flex-direction: row !important;
align-items: center;
border-bottom: solid 1px rgba(0, 0, 0, 0.075);
.toolbar {
flex-grow: 1;
display: flex;
align-items: center;
}
.logoWrapper {
height: 50px;
width: 155px;
display: flex;
align-items: center;
cursor: pointer;
img {
max-height: 100%;
max-width: 150px;
}
}
.rightSideBox {
flex-grow: 1;
display: flex;
justify-content: flex-end;
}
}
.banner {
color: #ffffff;
background-color: $primary-main;
}
.bannerInner {
display: flex;
gap: 10px;
padding-block: 10px;
z-index: 1;
width: 100%;
justify-content: space-between;
flex-direction: row;
button {
min-width: 44px;
color: inherit;
}
&:hover,
&.active,
&:focus-within {
background: $primary-main;
color: inherit;
button {
color: inherit;
}
}
}