mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 02:31:45 +08:00
22 lines
238 B
CSS
22 lines
238 B
CSS
@custom-media --big-viewport (min-width: 780px);
|
|
|
|
.listContainer {
|
|
max-width: 860px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.tabBar {
|
|
background: #9E9E9E;
|
|
}
|
|
|
|
.tab {
|
|
flex: 1;
|
|
color: white;
|
|
}
|
|
|
|
@media (--big-viewport) {
|
|
.tab {
|
|
flex: none;
|
|
}
|
|
}
|