Browse Source

Fix Issue with align-self rule

"top" ist not a legit property value of "align-self"
pull/6929/head
Julian Strecker 5 years ago
committed by GitHub
parent
commit
1b7bc03c67
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/modal.less

2
src/definitions/modules/modal.less

@ -124,7 +124,7 @@
align-self: @imageVerticalAlign;
}
.ui.modal > [class*="top aligned"] {
align-self: top;
align-self: flex-start;
}
.ui.modal > [class*="middle aligned"] {
align-self: middle;

Loading…
Cancel
Save