From 8c974768a81db75a0bd94e20db6a495126207f5b Mon Sep 17 00:00:00 2001 From: enes Date: Wed, 21 Aug 2024 11:25:35 +0200 Subject: [PATCH] fix: sign buttons styles Fix issue caused by styles change from 6f88f22933ddd6bf787c69d0dcaf12032d5ea4f9 --- .../MarkFormField/style.module.scss | 122 +++++++++--------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/src/components/MarkFormField/style.module.scss b/src/components/MarkFormField/style.module.scss index ef80df0..1275038 100644 --- a/src/components/MarkFormField/style.module.scss +++ b/src/components/MarkFormField/style.module.scss @@ -41,6 +41,67 @@ background: #447592; color: white; } + + .actionButtons { + display: flex; + flex-direction: row; + grid-gap: 5px; + } + + .actionsBottom { + display: flex; + flex-direction: row; + grid-gap: 5px; + justify-content: center; + align-items: center; + } + + .submitButton { + width: 100%; + max-width: 300px; + margin-top: 10px; + } + + .paginationButton { + font-size: 12px; + padding: 5px 10px; + border-radius: 3px; + background: rgba(0, 0, 0, 0.1); + color: rgba(0, 0, 0, 0.5); + } + + .paginationButton:hover { + background: #447592; + color: rgba(255, 255, 255, 0.5); + } + + .paginationButtonDone { + background: #5e8eab; + color: rgb(255, 255, 255); + } + + .paginationButtonCurrent { + height: 2px; + width: 100%; + background: #4c82a3; + } + + .trigger { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + position: relative; + } + + .triggerBtn { + background: white; + color: #434343; + padding: 5px 30px; + box-shadow: 0px -3px 4px 0 rgb(0, 0, 0, 0.1); + position: absolute; + top: -25px; + } } .actions { @@ -92,12 +153,6 @@ position: relative; } -.actionButtons { - display: flex; - flex-direction: row; - grid-gap: 5px; -} - .inputWrapper { display: flex; flex-direction: column; @@ -132,20 +187,6 @@ linear-gradient(white, white); } -.actionsBottom { - display: flex; - flex-direction: row; - grid-gap: 5px; - justify-content: center; - align-items: center; -} - -.submitButton { - width: 100%; - max-width: 300px; - margin-top: 10px; -} - .footerContainer { display: flex; flex-direction: row; @@ -167,44 +208,3 @@ flex-direction: column; grid-gap: 5px; } - -.paginationButton { - font-size: 12px; - padding: 5px 10px; - border-radius: 3px; - background: rgba(0, 0, 0, 0.1); - color: rgba(0, 0, 0, 0.5); -} - -.paginationButton:hover { - background: #447592; - color: rgba(255, 255, 255, 0.5); -} - -.paginationButtonDone { - background: #5e8eab; - color: rgb(255, 255, 255); -} - -.paginationButtonCurrent { - height: 2px; - width: 100%; - background: #4c82a3; -} - -.trigger { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - position: relative; -} - -.triggerBtn { - background: white; - color: #434343; - padding: 5px 30px; - box-shadow: 0px -3px 4px 0 rgb(0, 0, 0, 0.1); - position: absolute; - top: -25px; -}