refactor: more constrast, clearer favs

This commit is contained in:
Barf-Vader
2025-06-16 17:54:40 +01:00
parent 7332c0376b
commit f48d457f5b
17 changed files with 102 additions and 53 deletions

View File

@@ -327,10 +327,18 @@
<Text
name="location"
bind:value={studySpaceData.location}
placeholder="Room 123, Floor 1"
placeholder="Huxeley Labs 225"
maxlength={35}
required
/>
{#if (studySpaceData.location ?? "").length > 25}
<p class="lengthPopup">
Try to keep the name succinct—for example, building + room name. Put any further
information like floor number in the description.
</p>
{/if}
<div class="compulsoryTags">
<div class="compulsoryContainer">
<label for="volume">Sound level:</label>
@@ -629,7 +637,7 @@
.additionalImages {
padding: 0.5rem 1rem;
border-radius: 0.5rem;
background: linear-gradient(-83deg, #3fb095, #49bd85);
background: linear-gradient(-83deg, #3fb095, #189f5e);
box-shadow: 0rem 0rem 0.5rem #182125;
color: #eaffeb;
border: none;
@@ -662,4 +670,10 @@
background-color: #eaffeb;
border-radius: 5rem;
}
.lengthPopup {
background-color: #2e4653;
border-radius: 0.5rem;
padding: 0.5rem;
}
</style>