style.module.scss
28 lines
| 1 | .card { |
| 2 | background: #fff; |
| 3 | border-radius: 5px; |
| 4 | box-shadow: 0 3px 6px rgba(68, 68, 68, 0.05), 0 3px 6px rgba(68, 68, 68, 0.05); |
| 5 | display: flex; |
| 6 | flex-direction: column; |
| 7 | |
| 8 | > .title { |
| 9 | font-weight: 900; |
| 10 | padding: 16px; |
| 11 | font-size: 15px; |
| 12 | } |
| 13 | |
| 14 | > .content { |
| 15 | padding: 0; |
| 16 | flex: 1; |
| 17 | display: flex; |
| 18 | position: relative; |
| 19 | flex-direction: column; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | @media (max-width: 768px) { |
| 24 | .card { |
| 25 | grid-column: span 12 !important; |
| 26 | } |
| 27 | } |
| 28 |