This commit is contained in:
Campbell Alden 2022-08-21 10:32:26 +09:00
parent 9931edd601
commit 6d7cd88cc1
7 changed files with 110 additions and 32 deletions

View file

@ -122,7 +122,6 @@ button, .button {
background: transparent;
/* inherit font & color from ancestor */
color: inherit;
font: inherit;
/* Corrects font smoothing for webkit */
@ -182,9 +181,27 @@ a:hover {
color: var(--color-primary);
}
.cluster {
display: flex;
}
.spacing\:between {
justify-content: space-between;
}
.align\:center {
align-items: center;
}
.icon {
width: 24px;
height: 24px;
border-radius: 4px;
overflow: hidden;
}
.s1 {
gap: 10px;
}
.s2 {
gap: 20px;
.p1 {
padding: 10px;
}