mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-06 18:49:59 +02:00
17 lines
309 B
CSS
17 lines
309 B
CSS
.play-button-group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
gap: var(--theme-spacing-sm);
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.play-button-group-vertical {
|
|
flex-direction: column;
|
|
width: auto;
|
|
height: auto;
|
|
}
|