This commit is contained in:
Trevor Vallender 2024-06-29 09:03:27 +01:00
parent b81b78d13a
commit 202f827d57
4 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,3 @@
body { body {
font-family: Roboto, sans-serif; font-family: sans-serif;
} }

View File

@ -58,6 +58,11 @@ header {
header h1 { header h1 {
margin: 0; margin: 0;
padding: 1em; padding: 1em;
img {
width: 100%;
max-width: 600px;
min-width: 400px;
}
} }
header h1 a:link, header h1 a:visited { header h1 a:link, header h1 a:visited {

View File

@ -16,7 +16,9 @@
<%= turbo_frame_tag :modal %> <%= turbo_frame_tag :modal %>
<header> <header>
<%= yield(:header_content) if content_for?(:header_content) %> <%= yield(:header_content) if content_for?(:header_content) %>
<h1><%= link_to t("site_name"), root_path %></h1> <h1><%= link_to root_path do %>
<%= image_tag "logo.png", width: "600px" %>
<% end %></h1>
<nav> <nav>
<ul> <ul>
<% if logged_in? %> <% if logged_in? %>

View File

@ -1,8 +1,8 @@
- Edit dice roll command, types - Custom features
- request invite - CustomFeature basically a CharacterSheetSection
- Weapons/spells: skills? - belongs_to character_sheet_section becomes polymorphic
- Do this have_many :stats?
- Lists - Lists
- request invite
- improve dice roll parsing to allow e.g. choose highest - improve dice roll parsing to allow e.g. choose highest
- Easy add amount to stat - Easy add amount to stat
- icons on features - icons on features