Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/pages/research/BenchmarksPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@

/* SourcesBox (used in sources-section) */
.sources-box {
background: rgba(13, 20, 36, 0.6);
background: rgba(148, 163, 184, 0.05);
border: 1px solid rgba(148, 163, 184, 0.1);
border-radius: 12px;
padding: 1.5rem;
Expand Down
18 changes: 9 additions & 9 deletions frontend/src/pages/scanner/ScanProgressPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.scan-progress-center {
position: fixed;
position: relative;
inset: 0;
z-index: 1;
display: flex;
Expand Down Expand Up @@ -41,7 +41,7 @@
/* Retro Style Header Overlay */
.retro-header-overlay {
padding-top: 100px;
position: absolute;
position: relative;
top: 0;
left: 0;
right: 0;
Expand Down Expand Up @@ -104,7 +104,7 @@
/* Retro scanline effect */
&::before {
content: '';
position: absolute;
position: relative;
top: 0;
left: 0;
right: 0;
Expand All @@ -123,7 +123,7 @@
/* Retro pixelated effect - enhanced */
&::after {
content: 'Scan in progress — game mode.';
position: absolute;
position: relative;
top: 0;
left: 0;
color: rgba(34, 197, 94, 0.15);
Expand Down Expand Up @@ -205,7 +205,7 @@
/* Retro scanline effect on button */
&::before {
content: '';
position: absolute;
position: relative;
top: 0;
left: -100%;
width: 100%;
Expand Down Expand Up @@ -670,7 +670,7 @@
}

.scanner-ring {
position: absolute;
position: relative;
border-radius: 50%;
border: 2px solid rgba(59, 130, 246, 0.3);
}
Expand Down Expand Up @@ -702,7 +702,7 @@
}

.scanner-core {
position: absolute;
position: relative;
width: 80px;
height: 80px;
top: 50%;
Expand All @@ -717,7 +717,7 @@
}

.core-pulse {
position: absolute;
position: relative;
width: 100%;
height: 100%;
border-radius: 50%;
Expand Down Expand Up @@ -897,7 +897,7 @@

/* Inline error on scan progress (no dialog overlay) */
.scan-progress-inline-error {
position: absolute;
position: relative;
left: 50%;
top: calc(50% + 10.5rem);
transform: translate(-50%, 0);
Expand Down
Loading