26 lines
321 B
CSS
26 lines
321 B
CSS
.image-tagger.ArtSidebar {
|
|
flex-flow: column;
|
|
gap: 1.5rem;
|
|
padding: 1rem;
|
|
|
|
&.active {
|
|
display: flex;
|
|
}
|
|
|
|
> section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
.subtitle {
|
|
margin: 0;
|
|
text-align: center;
|
|
font-size: 0.75rem;
|
|
color: var(--color-text-subtitle);
|
|
}
|
|
}
|