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

70 lines
1.0 KiB
SCSS
Raw Normal View History

@import '../../styles/colors.scss';
@import '../../styles/sizes.scss';
.AppBar {
background-color: $overlay-background-color !important;
height: $header-height;
2024-02-29 07:05:05 +00:00
flex-direction: row !important;
align-items: center;
border-bottom: solid 1px rgba(0, 0, 0, 0.075);
2024-02-29 07:05:05 +00:00
.toolbar {
flex-grow: 1;
display: flex;
align-items: center;
}
2024-02-29 07:05:05 +00:00
.logoWrapper {
height: 50px;
2024-05-09 08:43:54 +00:00
width: 155px;
2024-02-29 07:05:05 +00:00
display: flex;
align-items: center;
2024-02-29 07:05:05 +00:00
cursor: pointer;
2024-02-29 07:05:05 +00:00
img {
max-height: 100%;
max-width: 150px;
}
}
2024-02-29 07:05:05 +00:00
.rightSideBox {
flex-grow: 1;
display: flex;
2024-02-29 07:05:05 +00:00
justify-content: flex-end;
}
}
2024-09-19 07:54:19 +00:00
.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;
}
}
}