Files
5chan/src/components/styled/BoardStats.styled.jsx
T
2023-08-22 16:18:55 +02:00

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;
}
}
`;