mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 09:57:39 +01:00
11 lines
173 B
SCSS
11 lines
173 B
SCSS
@mixin important-text {
|
|
color: red;
|
|
font-size: 25px;
|
|
font-weight: bold;
|
|
border: 1px solid blue;
|
|
}
|
|
|
|
.danger {
|
|
@include important-text;
|
|
background-color: green;
|
|
} |