feat: added tags on upload and view tweaked navbar

This commit is contained in:
Barf-Vader
2025-06-05 23:10:55 +01:00
committed by Gleb Koval
parent 022d9089e0
commit e625afd3b4
8 changed files with 196 additions and 15 deletions

View File

@@ -21,11 +21,11 @@
display: flex;
position: sticky;
width: 100%;
height: 4rem;
height: 3.5rem;
top: 0;
left: 0;
right: 0;
background: linear-gradient(-77deg, #2e4653, #3a5b56);
background: linear-gradient(-77deg, #2e4653, #223a37);
box-shadow: 0rem 0rem 0.5rem #182125;
align-items: center;
overflow: hidden;

View File

@@ -22,6 +22,11 @@
font-size: 1rem;
}
::placeholder {
color: #859a90;
opacity: 1;
}
input:focus {
border-color: #007bff;
outline: none;

View File

@@ -25,6 +25,11 @@
font-size: 1rem;
}
::placeholder {
color: #859a90;
opacity: 1;
}
textarea:focus {
border-color: #007bff;
outline: none;

View File

@@ -70,6 +70,7 @@ export type Database = {
description: string | null
id: string
location: string | null
tags: string[]
updated_at: string | null
}
Insert: {
@@ -78,6 +79,7 @@ export type Database = {
description?: string | null
id?: string
location?: string | null
tags?: string[]
updated_at?: string | null
}
Update: {
@@ -86,6 +88,7 @@ export type Database = {
description?: string | null
id?: string
location?: string | null
tags?: string[]
updated_at?: string | null
}
Relationships: []

View File

@@ -23,5 +23,6 @@ export const availableStudySpaceTags = [
"Hot",
"Air conditioned",
"Cold",
"Cringe"
"Cringe",
"PCs"
];