29 lines
474 B
CSS
29 lines
474 B
CSS
.oft.SidebarTabRearranger {
|
|
ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 12px;
|
|
cursor: var(--cursor-grab);
|
|
}
|
|
|
|
.emulate-button {
|
|
--size: 32px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: var(--size);
|
|
aspect-ratio: 1;
|
|
border: 1px solid var(--color-light-5);
|
|
border-radius: 4px;
|
|
}
|
|
}
|