diff --git a/app/assets/stylesheets/card-perma.css b/app/assets/stylesheets/card-perma.css index 622c9c198..59a80a32a 100644 --- a/app/assets/stylesheets/card-perma.css +++ b/app/assets/stylesheets/card-perma.css @@ -299,6 +299,19 @@ } } + .card-perma__notch-new-card-buttons { + display: flex; + gap: var(--inline-space-half); + + @media (max-width: 479px) { + flex-direction: column; + + .btn { + inline-size: 100%; + } + } + } + .card-perma__closure-message { color: var(--card-color); } diff --git a/app/views/account/settings/_user.html.erb b/app/views/account/settings/_user.html.erb index 6bc65acd8..2388c542d 100644 --- a/app/views/account/settings/_user.html.erb +++ b/app/views/account/settings/_user.html.erb @@ -1,4 +1,4 @@ -
  • +
  • <%= link_to user, class: "txt-ink flex gap-half align-center min-width" do %> <%= avatar_preview_tag user, hidden_for_screen_reader: true %>
    diff --git a/app/views/account/settings/_users.html.erb b/app/views/account/settings/_users.html.erb index 5e571eb67..63b5b1763 100644 --- a/app/views/account/settings/_users.html.erb +++ b/app/views/account/settings/_users.html.erb @@ -12,7 +12,7 @@
    -
      +
        <%= render partial: "account/settings/user", collection: users %>
    diff --git a/app/views/cards/container/footer/_create.html.erb b/app/views/cards/container/footer/_create.html.erb index 3e89952df..8b5062fdd 100644 --- a/app/views/cards/container/footer/_create.html.erb +++ b/app/views/cards/container/footer/_create.html.erb @@ -1,5 +1,5 @@
    -
    +
    <%= button_to card_publish_path(card), name: "creation_type", value: "add", class: "btn", title: "Create card (#{ hotkey_label(["ctrl", "enter"]) })", form: { data: { controller: "form" } }, diff --git a/app/views/layouts/public.html.erb b/app/views/layouts/public.html.erb index 253b9bd31..98a634e66 100644 --- a/app/views/layouts/public.html.erb +++ b/app/views/layouts/public.html.erb @@ -7,8 +7,8 @@ Skip to main content diff --git a/app/views/my/_menu.html.erb b/app/views/my/_menu.html.erb index 31d3d2551..b58f95058 100644 --- a/app/views/my/_menu.html.erb +++ b/app/views/my/_menu.html.erb @@ -4,8 +4,8 @@ <%= tag.button class:"nav__trigger input input--select center flex-inline align-center txt-normal", data: { action: "click->dialog#open keydown.j@document->hotkey#click keydown.meta+j@document->hotkey#click keydown.ctrl+j@document->hotkey#click", controller: "hotkey" } do %> - <%= image_tag "logo.png" %> - + <%= image_tag "logo.png", alt: "" %> + J <% end %> diff --git a/saas/app/assets/stylesheets/fizzy/saas.css b/saas/app/assets/stylesheets/fizzy/saas.css index 318c749e0..539f79b32 100644 --- a/saas/app/assets/stylesheets/fizzy/saas.css +++ b/saas/app/assets/stylesheets/fizzy/saas.css @@ -23,30 +23,33 @@ color: var(--settings-subscription-text-color); &::before { - content: "————"; + border-block-start: 1px solid var(--settings-subscription-text-color); + content: ""; display: block; - margin: auto; - text-align: center; + inline-size: 8ch; + margin: 0 auto 1ch; } } .settings-subscription__notch { animation: wiggle 500ms ease; background: var(--settings-subscription-background); - box-shadow: 0 0 0.3em 0.2em var(--settings-subscription-color); border-radius: 3em; + box-shadow: 0 0 0.3em 0.2em var(--settings-subscription-color); color: var(--settings-subscription-text-color); margin-inline: auto; padding: 0 0.3em 0 1.2em; + padding: 0.5ch 0.5ch 0.5ch 2ch; transform: rotate(-1deg); @media (max-width: 640px) { - padding-block: 0.6em; - padding-inline-start: 0.3em; + border-radius: 1ch; + padding-block: 1ch; + padding-inline: 2ch; } .btn { - margin-block: 0.3em; + /* margin-block: 0.3em; */ } }