mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
36 lines
461 B
SCSS
36 lines
461 B
SCSS
|
|
// scss-lint:disable NestingDepth ImportantRule
|
|
|
|
.session-modal {
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
padding: .25em 0;
|
|
}
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.instruction-session-collapse {
|
|
cursor: pointer;
|
|
margin-bottom: .5em;
|
|
margin-top: 20px;
|
|
|
|
.fa-angle-up {
|
|
margin-left: .5em;
|
|
}
|
|
|
|
&.collapsed {
|
|
|
|
.fa-angle-up {
|
|
@include rotate(-180deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|