29 lines
423 B
CSS
29 lines
423 B
CSS
![]() |
.button {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
![]() |
font-size: var(--font-size-normal);
|
||
|
background: var(--gray100);
|
||
![]() |
padding: 8px 16px;
|
||
![]() |
border-radius: 4px;
|
||
|
border: 0;
|
||
|
outline: none;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.button:hover {
|
||
|
background: #eaeaea;
|
||
|
}
|
||
![]() |
|
||
|
.button + .button {
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
|
||
|
.small {
|
||
|
font-size: var(--font-size-small);
|
||
|
}
|
||
|
|
||
|
.large {
|
||
|
font-size: var(--font-size-large);
|
||
|
}
|