feat: added tags on upload and view tweaked navbar
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -22,6 +22,11 @@
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: #859a90;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
border-color: #007bff;
|
||||
outline: none;
|
||||
|
||||
@@ -25,6 +25,11 @@
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: #859a90;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
textarea:focus {
|
||||
border-color: #007bff;
|
||||
outline: none;
|
||||
|
||||
3
src/lib/database.d.ts
vendored
3
src/lib/database.d.ts
vendored
@@ -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: []
|
||||
|
||||
@@ -23,5 +23,6 @@ export const availableStudySpaceTags = [
|
||||
"Hot",
|
||||
"Air conditioned",
|
||||
"Cold",
|
||||
"Cringe"
|
||||
"Cringe",
|
||||
"PCs"
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user