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

35 lines
552 B
SCSS
Raw Normal View History

@import '../../colors.scss';
.AppBar {
background-color: $background-color !important;
z-index: 1400 !important;
2024-02-29 07:05:05 +00:00
height: 60px;
flex-direction: row !important;
align-items: center;
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;
width: 100px;
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;
}
}