forked from HANYANG/HANYANG_MES
39 lines
674 B
SCSS
39 lines
674 B
SCSS
header {
|
|
background: $blue-004;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 48px;
|
|
padding: 0px 25px;
|
|
}
|
|
|
|
header .logo-container {
|
|
margin-left: 50px;
|
|
}
|
|
|
|
header .logo-container .logo-box {
|
|
background: url(../img/logo.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
height: 36px;
|
|
width: 166px;
|
|
}
|
|
|
|
header .status-menu {}
|
|
|
|
header .status-menu ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
header .status-menu ul li:not(:last-child) {
|
|
padding: 0 10px;
|
|
border-right: solid 2px $blue-002;
|
|
}
|
|
|
|
header .status-menu ul li a {
|
|
text-decoration: none;
|
|
color: $blue-002;
|
|
} |