We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60576ef commit fac16c4Copy full SHA for fac16c4
2 files changed
static/css/app.css
@@ -2484,6 +2484,9 @@
2484
.w-\[670px\] {
2485
width: 670px;
2486
}
2487
+ .w-auto {
2488
+ width: auto;
2489
+ }
2490
.w-full {
2491
width: 100%;
2492
templates/includes/announcement_modal.html
@@ -7,7 +7,7 @@
7
<dialog id="announcement-modal" class="modal" open>
8
<div class="modal-box bg-cream-1 {% if latest_announcement.modal_size == 'lg' %}w-11/12 max-w-2xl{% elif latest_announcement.modal_size == 'xl' %}w-11/12 max-w-4xl{% endif %}">
9
<form method="dialog" class="absolute right-4 top-4">
10
- <button class="btn btn-sm btn-ghost">✕</button>
+ <button class="btn btn-ghost text-2xl p-0 h-auto w-auto leading-none">✕</button>
11
</form>
12
<h3 class="font-bold text-lg">📢 {{ latest_announcement.title }}</h3>
13
<div class="py-4">
0 commit comments