diff --git a/app/assets/stylesheets/trays.css b/app/assets/stylesheets/trays.css
index 117346d18..7fbc10bb2 100644
--- a/app/assets/stylesheets/trays.css
+++ b/app/assets/stylesheets/trays.css
@@ -209,7 +209,6 @@
block-size: 100%;
display: flex;
flex-direction: column;
- font-size: 12px;
font-weight: normal;
gap: 0.25ch;
inline-size: 100%;
@@ -217,6 +216,12 @@
&:focus-visible {
z-index: 1;
}
+
+ @media (max-width: 1060px) {
+ > span:not(.icon) {
+ font-size: 12px;
+ }
+ }
}
> *:is(:first-child, :last-child) {
diff --git a/app/views/notifications/_tray.html.erb b/app/views/notifications/_tray.html.erb
index 23caa68ea..e01f90a42 100644
--- a/app/views/notifications/_tray.html.erb
+++ b/app/views/notifications/_tray.html.erb
@@ -12,17 +12,17 @@
title: "Notification settings",
data: { action: "dialog#close" } do %>
<%= icon_tag "settings" %>
- Settings
+ Settings
<% end %>
<%= link_to notifications_path, class: "tray__new-notifications btn borderless flex-item-grow position-relative overflow-ellipsis", data: { action: "click->dialog#close" } do %>
<%= icon_tag "bell" %>
- See more new items
+ See more new items
<% end %>
<%= link_to notifications_path, class: "tray__old-notifications btn borderless flex-item-grow position-relative overflow-ellipsis", data: { action: "click->dialog#close" } do %>
<%= icon_tag "bell" %>
- See older items
+ See older items
<% end %>
<%= button_to read_all_notifications_path,
@@ -30,7 +30,7 @@
title: "Mark all notifications as read",
data: { action: "dialog#close badge#clear", turbo_frame: "notifications" } do %>
<%= icon_tag "check" %>
- Clear all
+ Clear all
<% end %>