mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
23 lines
462 B
JavaScript
23 lines
462 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
export const CardContent = styled.div`
|
|
padding: 24px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
|
|
@media (max-width: 768px) {
|
|
padding-top: 40px;
|
|
}
|
|
`;
|
|
|
|
export const TopBorder = styled.div`
|
|
width: 100%;
|
|
height: 4px;
|
|
background-image: linear-gradient(to left, #a913de, #6ac9ff);
|
|
border-radius: 6px 6px 0 0;
|
|
`;
|