Make upload by ID styles work correctly

This commit is contained in:
Eli Ribble 2026-03-27 14:17:24 -07:00
parent 4bbfbdb9e6
commit 7699e58bc3
No known key found for this signature in database
3 changed files with 44 additions and 5 deletions

View file

@ -1,7 +1,3 @@
@use "sass:map";
// 1. Include specific theme variables
@import "variables.scss";
@keyframes spin {
0% {
transform: rotate(0deg);

View file

@ -1,4 +1,4 @@
<style scoped>
<style scoped lang="scss">
.results-container {
max-width: 1400px;
}
@ -37,6 +37,48 @@ thead tr.header {
height: 400px;
width: 100%;
}
.badge.dry {
background-color: $info;
}
.badge.empty {
background-color: #9c9bc0;
}
.badge.false.pool {
background-color: #6b2737;
}
.badge.green {
background-color: #4b6827;
}
.badge.murky {
background-color: #88bc4e;
}
.badge.unknown {
background-color: gray;
}
.summary-card {
transition: transform 0.2s;
}
.summary-card:hover {
transform: translateY(-5px);
}
.badge.status {
font-size: 0.85rem;
}
.badge.status.existing {
background-color: $secondary;
}
.badge.status.new {
background-color: $primary;
}
.badge.status.outside {
background-color: $warning;
}
.badge.status.unknown {
background-color: gray;
}
tr.has-error {
background-color: rgba(255, 193, 7, 0.15) !important;
}
</style>
<template>
<div class="container mt-4 results-container">

View file

@ -14,6 +14,7 @@ export default defineConfig({
css: {
preprocessorOptions: {
scss: {
additionalData: `@use "sass:map";\n@import "@/style/variables.scss";`,
api: "modern-compiler",
silenceDeprecations: [
"import",