Logo
This commit is contained in:
parent
b81b78d13a
commit
202f827d57
|
@ -1,3 +1,3 @@
|
|||
body {
|
||||
font-family: Roboto, sans-serif;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
|
|
@ -58,6 +58,11 @@ header {
|
|||
header h1 {
|
||||
margin: 0;
|
||||
padding: 1em;
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
min-width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
header h1 a:link, header h1 a:visited {
|
||||
|
|
|
@ -16,7 +16,9 @@
|
|||
<%= turbo_frame_tag :modal %>
|
||||
<header>
|
||||
<%= 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>
|
||||
<ul>
|
||||
<% if logged_in? %>
|
||||
|
|
8
todo.md
8
todo.md
|
@ -1,8 +1,8 @@
|
|||
- Edit dice roll command, types
|
||||
- Custom features
|
||||
- CustomFeature basically a CharacterSheetSection
|
||||
- belongs_to character_sheet_section becomes polymorphic
|
||||
- Lists
|
||||
- request invite
|
||||
- Weapons/spells: skills?
|
||||
- Do this have_many :stats?
|
||||
- Lists
|
||||
- improve dice roll parsing to allow e.g. choose highest
|
||||
- Easy add amount to stat
|
||||
- icons on features
|
||||
|
|
Loading…
Reference in New Issue