From 8cb25fc4421c56e3c228a95ac74f743165640761 Mon Sep 17 00:00:00 2001 From: Giorgio Garofalo Date: Tue, 8 Oct 2024 22:46:03 +0200 Subject: [PATCH] Rename `.align`'s `left`/`right` to `start`/`end` --- core/src/main/resources/render/theme/global.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/resources/render/theme/global.css b/core/src/main/resources/render/theme/global.css index 705708ae..07bcf800 100644 --- a/core/src/main/resources/render/theme/global.css +++ b/core/src/main/resources/render/theme/global.css @@ -275,7 +275,7 @@ code.focus-lines .hljs-ln-line:not(.focused), flex-direction: column; } -.align-left { +.align-start { text-align: start; justify-content: start; align-items: start; @@ -287,7 +287,7 @@ code.focus-lines .hljs-ln-line:not(.focused), align-items: center; } -.align-right { +.align-end { text-align: end; justify-content: end; align-items: end;