Skip to content

Commit

Permalink
fix(nossas): change alignment Y property to colunm
Browse files Browse the repository at this point in the history
  • Loading branch information
igr-santos committed Jan 17, 2024
1 parent 2876212 commit fb44183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/nossas/plugins/models/gridmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ class ColumnItemsSpacingChoices(models.TextChoices):


class YAlignmentChoices(models.TextChoices):
left = "justify-content: left;", "Acima"
left = "justify-content: flex-start;", "Acima"
center = "justify-content: center;","Ao centro"
right = "justify-content: right;","Abaixo"
right = "justify-content: flex-end;","Abaixo"


class XAlignmentChoices(models.TextChoices):
Expand Down

0 comments on commit fb44183

Please sign in to comment.