You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
1.6 KiB
SCSS
101 lines
1.6 KiB
SCSS
:global(#app) {
|
|
.item {
|
|
cursor: auto;
|
|
user-select: auto;
|
|
|
|
&:before {
|
|
background: none;
|
|
}
|
|
|
|
&:active,
|
|
&:hover {
|
|
background: transparent;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
|
|
.target {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.itemHoverable:hover {
|
|
cursor: pointer;
|
|
background: rgba(0, 0, 0, 0.32);
|
|
}
|
|
|
|
.logo {
|
|
color: #fff;
|
|
flex: 0 0 auto;
|
|
letter-spacing: 3.5px;
|
|
line-height: 50px;
|
|
padding: 0 16px;
|
|
text-transform: uppercase;
|
|
width: 130px;
|
|
|
|
&:before {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
.menu {
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
color: #fff;
|
|
flex: 1 1 auto;
|
|
height: 50px;
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.notification {
|
|
background: #eb5a46;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
position: absolute;
|
|
right: 8px;
|
|
text-align: center;
|
|
top: 8px;
|
|
width: 16px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.wrapper {
|
|
background: rgba(0, 0, 0, 0.24);
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.actionsButton {
|
|
background: none;
|
|
box-shadow: none;
|
|
border-radius: 3px;
|
|
box-sizing: content-box;
|
|
color: #fff;
|
|
display: inline-block;
|
|
text-align: center;
|
|
margin: 0;
|
|
min-height: auto;
|
|
opacity: 0;
|
|
outline: none;
|
|
padding: 4px;
|
|
transition: background 85ms ease;
|
|
width: 20px;
|
|
margin-left: 12px;
|
|
|
|
&:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
}
|
|
}
|