Make upload by ID styles work correctly
This commit is contained in:
parent
4bbfbdb9e6
commit
7699e58bc3
3 changed files with 44 additions and 5 deletions
|
|
@ -1,7 +1,3 @@
|
|||
@use "sass:map";
|
||||
// 1. Include specific theme variables
|
||||
@import "variables.scss";
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ export default defineConfig({
|
|||
css: {
|
||||
preprocessorOptions: {
|
||||
scss: {
|
||||
additionalData: `@use "sass:map";\n@import "@/style/variables.scss";`,
|
||||
api: "modern-compiler",
|
||||
silenceDeprecations: [
|
||||
"import",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue