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
18 lines
276 B
SCSS
18 lines
276 B
SCSS
.button-basic {
|
|
border: none;
|
|
padding: 15px 30px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button-report {
|
|
@extend .button-basic;
|
|
background-color: red;
|
|
}
|
|
|
|
.button-submit {
|
|
@extend .button-basic;
|
|
background-color: green;
|
|
color: white;
|
|
} |