fix: Style and type check changes.

Co-Authored By: Caspar Asaam <caspar@dyn3159-95.wlan.ic.ac.uk>
This commit is contained in:
TadiosT
2025-06-10 05:45:29 +01:00
parent 201467c73a
commit 61da21b7db
3 changed files with 30 additions and 75 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts">
import crossUrl from "$lib/assets/cross.svg";
export let selectedTags: string[] = [];
export let tagFilter: string;
export let tagFilterElem;
@@ -8,12 +8,10 @@
export let dropdownVisible: boolean;
export let deleteTag;
export let addTag;
</script>
<form>
<div class="tagDisplay">
<div class="tagDisplay">
{#each selectedTags as tagName (tagName)}
<button class="tag" onclick={deleteTag(tagName)} type="button">
{tagName}
@@ -59,7 +57,6 @@
</div>
{/if}
</div>
</form>
<style>
@@ -72,11 +69,6 @@
margin: 0 auto;
}
label {
color: #ffffff;
margin-top: 0.5rem;
}
.tagDisplay {
display: flex;
gap: 0.4rem;
@@ -155,40 +147,4 @@
.avaliableTag:last-child {
padding-bottom: 0.6rem;
}
.compulsoryTags {
display: grid;
gap: 0.4rem;
border-radius: 0.5rem;
background-color: none;
width: 100%;
font-size: 1rem;
grid-template-columns: repeat(3, 1fr);
}
.compulsoryContainer {
display: flex;
flex-direction: column;
align-items: left;
justify-content: top;
border-radius: 0.5rem;
background-color: none;
}
.compulsoryTagSelect {
width: 100%;
height: 100%;
padding: 0.5rem;
border-radius: 0.5rem;
border: 2px solid #eaffeb;
background: none;
color: #eaffeb;
font-size: 0.9rem;
text-align: left;
}
.compulsoryTagSelect option {
background-color: #2e4653;
color: #eaffeb;
}
</style>

View File

@@ -25,4 +25,4 @@ export const volumeTags = ["Silent", "Quiet", "Some Noise", "Loud"];
export const wifiTags = ["Good WiFi", "Moderate WiFi", "Bad WiFi", "No WiFi"];
export const powerOutletTags = ["Many Outlets", "Some Outlets", "No Outlets"];
export const allTags = [...availableStudySpaceTags, ...volumeTags, ...wifiTags, ...powerOutletTags]
export const allTags = [...availableStudySpaceTags, ...volumeTags, ...wifiTags, ...powerOutletTags];