fix: removed list style

This commit is contained in:
2026-08-21 17:40:03 +02:00
parent f8df8e224c
commit c521615537
+3 -1
View File
@@ -33,7 +33,6 @@ async function handleCreateList() {
<template> <template>
<main class="page"> <main class="page">
<h1>Your Lists</h1> <h1>Your Lists</h1>
<p class="subtitle">Everything is saved on this device and synced when you're online.</p>
<form class="new-list-form" @submit.prevent="handleCreateList"> <form class="new-list-form" @submit.prevent="handleCreateList">
<div class="field"> <div class="field">
@@ -97,6 +96,9 @@ h1 {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 0.6rem; gap: 0.6rem;
list-style: none;
padding: 0;
margin: 0;
} }
.empty-state { .empty-state {