fixes and functions

This commit is contained in:
Mateusz Gruszczyński
2026-08-05 23:07:51 +02:00
parent b41ec22aab
commit 4643de4309
3 changed files with 10 additions and 3 deletions
Generated
+1 -1
View File
@@ -2581,7 +2581,7 @@ dependencies = [
[[package]] [[package]]
name = "rustpad" name = "rustpad"
version = "0.2.42" version = "0.2.43"
dependencies = [ dependencies = [
"argon2", "argon2",
"aws-config", "aws-config",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "rustpad" name = "rustpad"
version = "0.2.42" version = "0.2.43"
edition = "2024" edition = "2024"
rust-version = "1.94" rust-version = "1.94"
description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL" description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL"
+8 -1
View File
@@ -2269,6 +2269,9 @@ dialog::backdrop {
.note-card-wrap { .note-card-wrap {
position: relative; position: relative;
display: flex;
flex-direction: column;
min-width: 0;
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 12px; border-radius: 12px;
background: var(--surface); background: var(--surface);
@@ -2276,6 +2279,9 @@ dialog::backdrop {
} }
.note-card-wrap .note-card { .note-card-wrap .note-card {
display: flex;
flex: 1 1 auto;
flex-direction: column;
border: 0; border: 0;
border-radius: 0; border-radius: 0;
} }
@@ -2794,7 +2800,8 @@ dialog::backdrop {
.note-card-meta { .note-card-meta {
display: grid; display: grid;
gap: 5px; gap: 5px;
margin-top: 28px; margin-top: auto;
padding-top: 28px;
color: var(--muted); color: var(--muted);
font-size: .75rem; font-size: .75rem;
} }