Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iFlameing committed Feb 29, 2024
1 parent 4c0be13 commit 7a69c29
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions src/theme/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,26 @@
}

.ui.grid {
.column:first-of-type {
.logo-block {
align-self: flex-start;
.column {
&:first-of-type {
.logo-block {
align-self: flex-start;
}
}

&:last-of-type {
.logo-block {
align-self: flex-end;
}
}
}

.column: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;
}
}
}
}
}
Expand Down Expand Up @@ -91,7 +102,8 @@
}
}

.block.logo-block {
.block.logo-block,
.logo-block {
display: flex;
flex-direction: column;
align-items: center;
Expand Down

0 comments on commit 7a69c29

Please sign in to comment.