30 lines
526 B
SCSS
30 lines
526 B
SCSS
.buttonContainer {
|
|
height: fit-content;
|
|
}
|
|
|
|
.buttonOutlineContainer {
|
|
background-color: var(--background-color);
|
|
color: var(--primary-color);
|
|
border-radius: 4px;
|
|
border: 1px solid var(--primary-color);
|
|
}
|
|
|
|
.button {
|
|
display: flex;
|
|
padding: 0.5rem 1rem;
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
gap: 8px;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
justify-content: center;
|
|
|
|
&:hover {
|
|
background-color: grey;
|
|
}
|
|
}
|
|
|
|
.iconAfter {}
|