* Moved html in scss to separate files * Moved components to designated folders * Moved logic from html to ts
47 lines
1.0 KiB
SCSS
47 lines
1.0 KiB
SCSS
:host {
|
|
display: flex;
|
|
|
|
.mouse-action {
|
|
ul {
|
|
border-right: 1px solid #ccc;
|
|
li {
|
|
a {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
&.active {
|
|
a:after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
top: 0;
|
|
right: -4rem;
|
|
border-color: transparent transparent transparent #337ab7;
|
|
border-style: solid;
|
|
border-width: 2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.help-text--mouse-speed {
|
|
margin-bottom: 2rem;
|
|
font-size: 0.9em;
|
|
color: #666;
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.details {
|
|
.btn-placeholder {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
}
|