12 lines
161 B
CSS
12 lines
161 B
CSS
#bar-container {
|
|
position: fixed;
|
|
bottom: 10%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
gap: 4px;
|
|
}
|
|
|
|
.segment {
|
|
flex: 0 0 auto;
|
|
} |