25 lines
493 B
SCSS
25 lines
493 B
SCSS
@use "../abstracts/variables" as *;
|
|
@use "../abstracts/mixins" as *;
|
|
|
|
.labeled-button-container {
|
|
@include flex-space-between;
|
|
padding: 6px 12px;
|
|
|
|
button {
|
|
padding: 2px 32px;
|
|
border: none;
|
|
border-radius: #{$border-radius-large};
|
|
color: var(--text-button-color);
|
|
background: var(--background-color-button);
|
|
transition: all 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
outline: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
}
|