login typo, loop in feedback

This commit is contained in:
Tykayn 2025-09-25 16:22:43 +02:00 committed by tykayn
parent af8e24ef4d
commit 03d7a90d24
15 changed files with 143 additions and 258 deletions

View file

@ -1,10 +1,10 @@
@use "sass:color";
//@use "../src/styles/variables.scss";
@use "../../src/styles/variables.scss";
.feedback-button {
background: #ecf3fa;
color: #083b7d;
padding: 8px;
font-family: variables.$font-family;
background: #E3EAF1;
color: #005AA2;
border-radius: 8px 8px 0 0;
transform: rotate(270deg);
cursor: pointer;
@ -18,6 +18,14 @@
top: 240px;
z-index: 100;
border: 0;
padding: 10px;
text-align: center;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 8px; /* 57.143% */
&:hover {
background: #d9e8f6;
@ -30,7 +38,7 @@
// Modal styles
.feedback-modal-overlay {
position: fixed;
top: 0;
top: 92px;
left: 0;
right: 0;
bottom: 0;
@ -42,7 +50,7 @@
}
.feedback-modal {
background: white;
background: #E3EAF1;
border-radius: 8px;
width: 90%;
max-width: 500px;
@ -54,6 +62,7 @@
}
.modal-header {
background: transparent;
display: flex;
justify-content: space-between;
align-items: center;
@ -84,6 +93,7 @@
.modal-body {
padding: 20px;
overflow-y: auto;
background: transparent;
.modal-description {
margin-bottom: 16px;