50 lines
695 B
SCSS
50 lines
695 B
SCSS
.customNavbar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 9;
|
|
width: 100%;
|
|
background-color: #FAFAFA;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.navbarContent {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.leftSection {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 60px;
|
|
}
|
|
|
|
.centerSection {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.rightSection {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 60px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
|
|
.backIcon {
|
|
width: 24px;
|
|
height: 24px;
|
|
cursor: pointer;
|
|
}
|