mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
23 lines
375 B
React
23 lines
375 B
React
import styled from "styled-components";
|
|
|
|
export const BoardStatsContainer = styled.div`
|
|
@media (max-width: 480px) {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 480px) {
|
|
width: 468px;
|
|
margin: auto;
|
|
|
|
table {
|
|
border-spacing: 0px;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
tr {
|
|
vertical-align: top;
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
`; |