generated from gitea_admin/default
ajout de strapi
This commit is contained in:
39
app/assets/scss/base/_button.scss
Normal file
39
app/assets/scss/base/_button.scss
Normal file
@@ -0,0 +1,39 @@
|
||||
@use 'colors' as *;
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: .6rem 1.2rem;
|
||||
border-radius: .4rem;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.2s;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
}
|
||||
.btn:hover {
|
||||
background-color: $bleu_fonce;
|
||||
}
|
||||
.btn--primary {
|
||||
background-color: $bleu_clair;
|
||||
color: white;
|
||||
}
|
||||
.btn--primary:hover {
|
||||
background-color: $bleu_fonce;
|
||||
}
|
||||
|
||||
.btn--secondary {
|
||||
background-color: $gris_clair;
|
||||
color: $noir;
|
||||
}
|
||||
.btn--secondary:hover {
|
||||
background-color: $gris_moyen;
|
||||
}
|
||||
|
||||
.btn--outline {
|
||||
border: 1px solid $bleu_clair;
|
||||
color: $bleu_clair;
|
||||
background: transparent;
|
||||
}
|
||||
.btn--outline:hover {
|
||||
background-color: $bleu_clair;
|
||||
color: white;
|
||||
}
|
||||
Reference in New Issue
Block a user