1
0
mirror of https://github.com/GenderDysphoria/GenderDysphoria.fyi.git synced 2025-11-25 20:42:40 +00:00

Move off of sass legacy api and disable deprecation warnings

This commit is contained in:
Jocelyn Badgley
2025-10-08 07:45:50 -07:00
parent 54c7b125d9
commit 6eafb7d435
2 changed files with 6 additions and 13 deletions

View File

@@ -224,7 +224,7 @@ body.post {
.post-link {
flex: 1;
flex-basis: $sidebarWidth / 2;
flex-basis: div($sidebarWidth, 2);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@@ -268,7 +268,7 @@ body.post {
position: relative;
.post-tags {
display: grid;
grid-template-columns: repeat( auto-fill, minmax( $sidebarWidth / 2 - 15, 1fr ) );
grid-template-columns: repeat( auto-fill, minmax( div($sidebarWidth, 2) - 15, 1fr ) );
}
}
}