diff --git a/news/23.bugfix b/news/23.bugfix new file mode 100644 index 0000000..b7a46f7 --- /dev/null +++ b/news/23.bugfix @@ -0,0 +1 @@ +Fix alignment issues with VLT. @iFlameing \ No newline at end of file diff --git a/src/theme/main.less b/src/theme/main.less index 371b7c9..58a16c6 100644 --- a/src/theme/main.less +++ b/src/theme/main.less @@ -7,6 +7,31 @@ display: flex; } + .ui.grid { + .column { + &:first-of-type { + .logo-block { + align-self: flex-start; + } + } + + &:last-of-type { + .logo-block { + align-self: flex-end; + } + } + + @media only screen and (max-width: 769px) { + &:first-of-type, + &:last-of-type { + .logo-block { + align-self: unset; + } + } + } + } + } + // general spacing in the Row block wrapper & [class^='block-editor-'], [class^='block-editor-'].contained { @@ -77,7 +102,8 @@ } } - .block.logo-block { + .block.logo-block, + .logo-block { display: flex; flex-direction: column; align-items: center;