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