mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-03 02:58:15 +00:00
13 lines
243 B
SCSS
13 lines
243 B
SCSS
.classes__class {
|
|
transition: background .25s, color .25s;
|
|
position: relative;
|
|
min-height: 10rem;
|
|
border-top: 10px solid $primary-colour;
|
|
|
|
@include on-event() {
|
|
cursor: pointer;
|
|
background-color: $primary-colour;
|
|
color: white;
|
|
}
|
|
}
|