style(site): fix call to action buttons on mobile

This commit is contained in:
Ayo 2023-11-24 00:55:36 +01:00
parent 80b678da27
commit 9fbea956e0

View file

@ -26,19 +26,15 @@
text-decoration: none; text-decoration: none;
width: 40%; width: 40%;
} }
} }
} }
@media only screen and (max-device-width: 376px) { @media only screen and (max-device-width: 376px) {
.call-to-action { .call-to-action {
flex-direction: column; flex-direction: column;
& a:not(#primary) { & a {
padding: 0.5em; width: 100% !important;
} }
} }
} }
</style> </style>