Files
lucent-laravel/front/sass/_button.scss
T

48 lines
662 B
SCSS
Raw Normal View History

2024-08-15 14:44:53 +03:00
.button{
border-radius: 12px;
background: var(--background);
padding: 3px 10px;
cursor: pointer;
filter: brightness(97%);
border: none;
font-size: 14px;
2024-08-15 18:52:53 +03:00
min-height: 27px;
display: flex;
align-items: center;
gap: 4px;
2024-08-15 22:11:26 +03:00
&.secondary{
background: var(--secondary);
}
&.primary{
background: var(--primary);
}
2024-08-15 14:44:53 +03:00
&:focus {
filter: brightness(94%);
}
&:hover {
filter: brightness(94%);
}
&.active {
filter: brightness(74%);
}
2024-08-16 14:34:39 +03:00
&[disabled] {
pointer-events: none;
}
}
.upload-button{
padding: 0;
border: none;
label{
font-size: 14px;
line-height: 14px;
font-weight: normal;
}
2024-08-15 14:44:53 +03:00
}