From adbf374010d1007c1f7832454d105bc8cf097667 Mon Sep 17 00:00:00 2001 From: eggy Date: Wed, 24 May 2023 13:11:09 -0400 Subject: [PATCH] fix: ensure project descriptions fit at all breakpoints --- components/ProjectCard.vue | 4 ++-- data/projects.ts | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/components/ProjectCard.vue b/components/ProjectCard.vue index 26ec52d..0b682fe 100644 --- a/components/ProjectCard.vue +++ b/components/ProjectCard.vue @@ -109,7 +109,7 @@ html.dark .card-img { } .desc-text { - width: 139%; + width: 140%; /* 140% is too close */ transition: width 0.2s ease; } @@ -128,7 +128,7 @@ a.unclickable { } .desc-text { - width: 135%; + width: 136%; } } diff --git a/data/projects.ts b/data/projects.ts index fbaf33d..77d117f 100644 --- a/data/projects.ts +++ b/data/projects.ts @@ -39,7 +39,7 @@ export const projects: Project[] = [ langs: ["python"], license: "LGPL-3.0", description: - "A webnovel downloader and converter to EPUB for my Kobo, with lots of metadata!", + "A webnovel downloader and EPUB converter for my Kobo, with lots of metadata!", longDescription: "Heavily borrows Mandown's design.", type: "client", }, @@ -68,7 +68,7 @@ export const projects: Project[] = [ name: "PillowⓇ", href: "https://github.com/potatoeggy/ece198", description: - "A water quality statistics aggregator written for the STM32 microcontroller with an LCD display and keypad.", + "A water quality statistics aggregator written for the STM32 microcontroller with a display and keypad.", langs: ["rust"], license: "GPL-3.0", type: "embedded", @@ -80,7 +80,7 @@ export const projects: Project[] = [ langs: ["python"], license: "AGPL-3.0", description: - "A Discord bot initially to track sleep hours as friendly competition but is now a local music bot with synchronised lyrics!", + "A Discord music bot with synchronised lyrics, originally a sleep tracking bot to encourage sleeping.", img: "napbot.webp", type: "server", }, @@ -101,7 +101,7 @@ export const projects: Project[] = [ license: "AGPL-3.0", img: "perdiem.webp", description: - "A pretty budget tracking app where I learned too much about server-side rendering.", + "A pretty budgeting app where I learned too much about server-side rendering.", longDescription: "Written for StormHacks 2022.", type: "client", }, @@ -111,7 +111,7 @@ export const projects: Project[] = [ langs: ["python", "android", "flutter"], img: "recipeready.webp", description: - "Android app to automagically plan meals and prepare a shopping list so you don't have to.", + "App to automagically plan meals and prepare a grocery list so you don't have to.", longDescription: "Written for Hack the North 2021.", type: "full", },