multi-window support

This commit is contained in:
RobinB27
2025-10-08 11:18:13 +02:00
parent 21a85e4a6d
commit 522364f601
3 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,6 @@ article {
.card-open-symbol {
font-size: 1.5rem;
rotate: 90deg;
transition: rotate 0.5s;
cursor: pointer;
}
@@ -31,7 +30,7 @@ article {
}
.card-open-symbol {
rotate: 0deg;
rotate: -90deg;
}
}

View File

@@ -41,9 +41,7 @@
<article>
<header>
<input type="checkbox" id="card-check" class="card-check">
<!-- <label for="card-check" class="card-open-symbol">&#9655;</label> -->
<!-- TODO: If using FontAwesome icons, switch to -down and update css -->
<label for="card-check" class="card-open-symbol"><i class="fa-solid fa-caret-right"></i></label>
<label for="card-check" class="card-open-symbol"><i class="fa-solid fa-caret-down"></i></label>
<h1>How to start?</h1>
<a href="#"><i class="fa fa-solid fa-edit"></i> Edit</a>
</header>
@@ -108,6 +106,8 @@
<article>
<header>
<input type="checkbox" id="card-check-1" class="card-check">
<label for="card-check-1" class="card-open-symbol"><i class="fa-solid fa-caret-down"></i></label>
<h1>A card with a table</h1>
<a href="#"><i class="fa fa-solid fa-edit"></i> Edit</a>
</header>
@@ -148,6 +148,8 @@
<article>
<header>
<input type="checkbox" id="card-check-2" class="card-check">
<label for="card-check-2" class="card-open-symbol"><i class="fa-solid fa-caret-down"></i></label>
<h1>Image with head</h1>
</header>
<main>

View File

@@ -901,7 +901,6 @@
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
"dev": true,
"license": "MIT",
"peer": true,
"engines": {
"node": ">=12"
},