Add files

This commit is contained in:
jeffvli 2022-12-19 15:59:14 -08:00
commit e87c814068
266 changed files with 63938 additions and 0 deletions

View file

@ -0,0 +1,54 @@
import { css } from 'styled-components';
export const textEllipsis = css`
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
`;
export const flexBetween = css`
display: flex;
flex-direction: row;
justify-content: space-between;
`;
export const flexCenter = css`
display: flex;
align-items: center;
justify-content: center;
`;
export const flexCenterColumn = css`
${flexCenter}
flex-direction: column;
`;
export const coverBackground = css`
background-repeat: no-repeat;
background-position: center;
background-size: cover;
`;
export const fadeIn = css`
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
`;
export const rotating = css`
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
`;