2020-08-04 08:20:35 +02:00
|
|
|
.button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-08-06 08:03:07 +02:00
|
|
|
font-size: var(--font-size-normal);
|
|
|
|
background: var(--gray100);
|
2020-08-06 04:04:02 +02:00
|
|
|
padding: 8px 16px;
|
2020-08-04 08:20:35 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
border: 0;
|
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:hover {
|
|
|
|
background: #eaeaea;
|
|
|
|
}
|