Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfluegge committed Feb 1, 2025
1 parent 318cf97 commit f4ba508
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 36 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
.overlay {
display: none;
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.15);
color: black;
align-items: center;
justify-content: center;
z-index: 2;
}

.dialog {
position: absolute;
background-color: var(--menu-color);
Expand Down
12 changes: 0 additions & 12 deletions webapp/src/app/component/dialog-llm/llm-dialog.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,6 @@
padding: 8px 16px;
}

.overlay {
display: none;
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.15);
color: black;
align-items: center;
justify-content: center;
z-index: 2;
}

.dialog {
position: absolute;
background-color: var(--menu-color);
Expand Down
12 changes: 0 additions & 12 deletions webapp/src/app/component/navigation/sidenav.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -335,18 +335,6 @@ input:checked + .slider:before {
border-radius: 50%;
}

.overlay {
display: none;
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.15);
color: black;
align-items: center;
justify-content: center;
z-index: 2;
}

.open {
display: flex;
}
Expand Down
12 changes: 12 additions & 0 deletions webapp/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -363,3 +363,15 @@ code {
transform: rotate(360deg);
}
}

.overlay {
display: none;
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.15);
color: black;
align-items: center;
justify-content: center;
z-index: 2;
}

0 comments on commit f4ba508

Please sign in to comment.