fix: ensure project descriptions fit at all breakpoints

This commit is contained in:
eggy 2023-05-24 13:11:09 -04:00
parent 1c1cb3bf8a
commit adbf374010
2 changed files with 7 additions and 7 deletions

View File

@ -109,7 +109,7 @@ html.dark .card-img {
} }
.desc-text { .desc-text {
width: 139%; width: 140%;
/* 140% is too close */ /* 140% is too close */
transition: width 0.2s ease; transition: width 0.2s ease;
} }
@ -128,7 +128,7 @@ a.unclickable {
} }
.desc-text { .desc-text {
width: 135%; width: 136%;
} }
} }

View File

@ -39,7 +39,7 @@ export const projects: Project[] = [
langs: ["python"], langs: ["python"],
license: "LGPL-3.0", license: "LGPL-3.0",
description: 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.", longDescription: "Heavily borrows Mandown's design.",
type: "client", type: "client",
}, },
@ -68,7 +68,7 @@ export const projects: Project[] = [
name: "PillowⓇ", name: "PillowⓇ",
href: "https://github.com/potatoeggy/ece198", href: "https://github.com/potatoeggy/ece198",
description: 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"], langs: ["rust"],
license: "GPL-3.0", license: "GPL-3.0",
type: "embedded", type: "embedded",
@ -80,7 +80,7 @@ export const projects: Project[] = [
langs: ["python"], langs: ["python"],
license: "AGPL-3.0", license: "AGPL-3.0",
description: 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", img: "napbot.webp",
type: "server", type: "server",
}, },
@ -101,7 +101,7 @@ export const projects: Project[] = [
license: "AGPL-3.0", license: "AGPL-3.0",
img: "perdiem.webp", img: "perdiem.webp",
description: 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.", longDescription: "Written for StormHacks 2022.",
type: "client", type: "client",
}, },
@ -111,7 +111,7 @@ export const projects: Project[] = [
langs: ["python", "android", "flutter"], langs: ["python", "android", "flutter"],
img: "recipeready.webp", img: "recipeready.webp",
description: 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.", longDescription: "Written for Hack the North 2021.",
type: "full", type: "full",
}, },