diff --git a/public/css/main.css b/public/css/main.css index 0caacf9..0e95b56 100644 --- a/public/css/main.css +++ b/public/css/main.css @@ -105,6 +105,7 @@ label.field-with-error { /* Tables */ table { border-collapse: collapse; + width: 100%; } th, td { padding: 5px; @@ -126,6 +127,11 @@ td:last-child { border-left: solid 2px currentColor; } +/* Responsive */ +.responsive-wrapper { + overflow-x: auto; + width: 100%; +} /* Light mode */ @media (prefers-color-scheme: light) { diff --git a/templates/interface/landingPage.html.ep b/templates/interface/landingPage.html.ep index fc52f3e..837a853 100644 --- a/templates/interface/landingPage.html.ep +++ b/templates/interface/landingPage.html.ep @@ -22,6 +22,7 @@ % if (scalar @$pins == 0) {

Seems like there's nothing here.

% } else { +
@@ -42,6 +43,7 @@ % }
Filename
+
% } % if (scalar @$pins == $limit) { diff --git a/templates/interface/tokens.html.ep b/templates/interface/tokens.html.ep index dad412c..0c26467 100644 --- a/templates/interface/tokens.html.ep +++ b/templates/interface/tokens.html.ep @@ -14,6 +14,7 @@ % if (scalar @$tokens == 0) {

Seems like there's nothing here.

% } else { +
@@ -29,7 +30,8 @@ % } -
Token ID
+ +
% }