-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upravene zarovania #376
Upravene zarovania #376
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inak fajn
{who_can_participate && <Typography variant="body1">Súťaž je určená pre {who_can_participate}</Typography>} | ||
{who_can_participate && ( | ||
<Typography variant="body1"> | ||
Súťaž je určená pre {who_can_participate}.{description && ` ${description}`} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description nedava zmysel bez who_can_participate? len sa pytam, ty vies, preco si menil
direction="row" | ||
sx={{ | ||
mt: 0.5, | ||
justifyContent: 'end', | ||
alignItems: 'end', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
basically staci:
sx={{
mt: 0.5,
alignItems: 'end',
alignItems
zarovnava v "cross" osi - ked mame Stack, je defaultne vertikalny, a alignItems
to da na koniec horizontalne.
alternativa by bola:
direction="row"
sx={{
mt: 0.5,
justifyContent: 'end',
justifyContent
zarovnava v osi sadzania
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Použil som to prvé
<Typography variant="body1"> | ||
<b>Registrácia prebieha do:</b> {formatDateTime(upcoming_or_current_event.registration_link.end)} | ||
</Typography> | ||
<Stack alignSelf="center"> | ||
<Stack direction="row" sx={{justifyContent: 'end', alignItems: 'end'}}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
takisto aj tu:
<Stack sx={{alignItems: 'end'}}>
No description provided.