📱 Fixes responsive index
All checks were successful
Gitea Build Action / build-go (push) Successful in 1m57s
Gitea Build Action / build-nuxt (push) Successful in 11m26s

This commit is contained in:
2025-07-02 10:34:13 +02:00
parent 96fe2d04cb
commit aac191521f

View File

@@ -1,6 +1,6 @@
<template> <template>
<main <main
class="flex items-center justify-center min-w-screen min-h-screen gap-4 flex-wrap" class="flex items-center justify-center min-w-screen min-h-screen gap-4 flex-wrap flex-col md:flex-row"
> >
<div class="flex items-center justify-center flex-col gap-y-2 w-32"> <div class="flex items-center justify-center flex-col gap-y-2 w-32">
<div <div
@@ -17,7 +17,7 @@
</div> </div>
<p <p
:class="`flex items-center justify-center text-${opened ? (locked ? 'error' : 'secondary') : 'primary'} text-xl w-full h-10`" :class="`flex items-center justify-center text-${opened ? (locked ? 'error' : 'secondary') : 'primary'} text-xl w-full h-10 border-${opened ? (locked ? 'error' : 'secondary') : 'primary'} border-solid border-2 rounded-md`"
> >
{{ opened ? "Opened" : "Closed" }} {{ opened ? "Opened" : "Closed" }}
</p> </p>