Files
journal.pl/src/pages/style.ts
primakov 58342561ee
Some checks failed
platform/bro/pipeline/pr-master This commit looks good
platform/bro/pipeline/head This commit looks good
platform/gitea-bro-js/journal.pl/pipeline/head There was a failure building this commit
platform/bro-js/journal.pl/pipeline/head This commit looks good
users screen + userCard component
2024-04-03 22:00:17 +03:00

40 lines
687 B
TypeScript

import styled from '@emotion/styled'
import { keyframes } from '@emotion/react'
export const BreadcrumbsWrapper = styled.div`
padding: 12px;
`
const reveal = keyframes`
0% {
transform: scale(0.85, 0.85);
}
100% {
transform: scale(1);
}
`
export const StudentList = styled.ul`
padding-left: 0px;
height: 600px;
justify-content: space-evenly;
padding-right: 20px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 8px;
`
export const QRCanvas = styled.canvas`
display: block;
`
export const ErrorSpan = styled.span`
color: #f9e2e2;
display: block;
padding: 16px;
background-color: #d32f0b;
border-radius: 11px;
`