Files
LMSGI-2024-25/Unidad_03_HTML/SASS/04_mixin/index.scss
2025-01-27 13:50:39 +01:00

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;
}