From 492d87d3658f2f24afa87493744292654b7ae373 Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Fri, 4 Oct 2024 13:25:09 +0200 Subject: [PATCH] improved theme --- assets/_custom.scss | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/assets/_custom.scss b/assets/_custom.scss index a9f6f8e..6fea72d 100644 --- a/assets/_custom.scss +++ b/assets/_custom.scss @@ -1,7 +1,32 @@ -/* You can add custom styles here. */ - -// @import "plugins/numbered"; -.commit-info { - padding: 1rem; - background-color: var(--gray-500); +.info-container { + display: flex; + justify-content: space-between; + align-items: flex-start; + background-color: var(--gray-100); + width: 100%; + bottom: 0; + left: 0; + right: 0; } + +.left-section { + flex-direction: column; + flex: 1; +} + +.commit-info { + text-align: right; + flex: 1; + margin-left: 1rem; +} + +.disclaimer, .theme, .commit-info { + background-color: var(--gray-500); + padding: 0.9rem; + margin: 0.8rem; +} + +.disclaimer, .theme { + font-size: 0.9rem; +} +