Files

30 lines
608 B
SCSS

.ntsh-topbar {
.ntsh_menubar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
.ntsh_menubar-item {
padding: 10px 20px;
border: 2px solid #000;
font-weight: 500;
transition-duration: .2s;
cursor: pointer;
&:hover {
background: #d7ccc1;
}
&.selected {
pointer-events: none;
opacity: .3;
}
}
}
img {
width: 100%;
}
}