slider hero
All checks were successful
Deploy / Deploy to Production (push) Successful in 11s

This commit is contained in:
Julie Blanc 2026-01-08 14:53:08 +01:00
parent 6cf52a6703
commit 43e50ebc37
21 changed files with 578 additions and 143 deletions

View file

@ -5,6 +5,7 @@ button{
color: var(--color-txt);
&:hover{
color: var(--grey-100);
svg{ fill: var(--grey-100); }
}
a{
@ -30,7 +31,34 @@ button:disabled{
}
.btn--small{
display: block;
height: calc(var(--h-block)*0.75);
border: var(--border);
border-radius: var(--radius-btn);
font-size: var(--fs-small);
line-height: 1;
overflow: hidden;
white-space: nowrap;
a{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
padding: 0 1ch;
padding-top: 2px;
}
&.no-link{
display: flex;
align-items: center;
justify-content: center;
padding: 0 1ch;
padding-top: 2px;
}
}
.btn--bold,
.btn--bold-inline{
display: block;
@ -90,6 +118,10 @@ button:disabled{
}
}
.btn--light{
border: var(--border-light);
}