Cleaned up some minor mobile usability issues.

This commit is contained in:
Andrew Lalis 2024-08-26 13:23:11 -04:00
parent 7a141463cc
commit 25269ad90e
6 changed files with 14 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -31,9 +31,8 @@ const date = computed(() => {
background-color: var(--background-color-2); background-color: var(--background-color-2);
border-radius: 20px; border-radius: 20px;
padding: 0.75rem; padding: 0.75rem;
}
.logbook-message + .logbook-message {
margin-top: 1rem; margin-top: 1rem;
margin-bottom: 1rem;
} }
.logbook-message > time { .logbook-message > time {
font-family: monospace; font-family: monospace;

View File

@ -51,9 +51,8 @@ function getTagStyle(tag: string) {
background-color: var(--background-color-2); background-color: var(--background-color-2);
border-radius: 20px; border-radius: 20px;
padding: 1rem; padding: 1rem;
}
.software-project-tile + .software-project-tile {
margin-top: 1rem; margin-top: 1rem;
margin-bottom: 1rem;
} }
.software-project-tile > h3 { .software-project-tile > h3 {

View File

@ -6,6 +6,8 @@
My name's Andrew, and I'm a software engineer, gardener, runner, home cook, and probably many My name's Andrew, and I'm a software engineer, gardener, runner, home cook, and probably many
other things too, depending on who you ask. Welcome to my website! other things too, depending on who you ask. Welcome to my website!
</p> </p>
<p>Click one of the links on the left to check out something more interesting.</p> <p>
Click one of the links to check out something more interesting.
</p>
</main> </main>
</template> </template>

BIN
design/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

9
upload-new.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
cd app
npm run lint
npm run type-check
npm run build
cd ..
rsync -rav -e ssh --delete app/dist/ root@andrewlalis.com:/var/www/andrewlalis.com/html