11 |
12 |
13 |
14 |
15 |
16 | css`
18 | padding: 32px;
19 | background-color: ${theme.colors.primary};
20 | color: ${theme.colors.light};
21 | font-size: ${theme.sizes.h4.size.desktop};
22 | border-radius: 12px;
23 | transition: all 0.3s ease;
24 |
25 | &:hover {
26 | background-color: ${theme.colors.primaryDark};
27 | }
28 | `}
29 | >
30 | Hello world.
31 |
32 |
33 |