umami/components/interface/Button.module.css

29 lines
423 B
CSS
Raw Normal View History

.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;
border-radius: 4px;
border: 0;
outline: none;
cursor: pointer;
}
.button:hover {
background: #eaeaea;
}
2020-08-07 09:24:01 +02:00
.button + .button {
margin-left: 10px;
}
.small {
font-size: var(--font-size-small);
}
.large {
font-size: var(--font-size-large);
}