You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
436 B
CSS

.box {
display: grid;
grid-template-rows: 1fr auto;
margin: 4px 0px;
padding: 0px 8px;
background-color: transparent;
&:first-child {
border-left: none;
}
&:last-child {
border-right: none;
}
}
.label {
padding: 1px 5px;
font-size: .9em;
margin-top: 4px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.contents {
display: flex;
flex-wrap: wrap;
flex-direction: column;
overflow: hidden;
}