Compare commits

..

6 Commits
1.2.6 ... 1.2.8

Author SHA1 Message Date
Stefan Zermatten
398f8a8a2a Merge branch 'bugfix-style' 2017-06-28 09:33:20 +02:00
Stefan Zermatten
812a1784b2 Improved display of home page on smaller devices 2017-06-28 09:27:24 +02:00
Stefan Zermatten
8fa9cd0148 Prevented spell titles from overflowing their item in spell lists
closes #83
2017-06-28 09:26:52 +02:00
Stefan Zermatten
0e0662cc9a Added slightly specific rule to let headings wrap
closes #90
2017-06-28 09:26:13 +02:00
Stefan Zermatten
ad4e3f5b20 Stopped inventory items being separated from their containers
hopefully fixes #91
2017-06-28 09:25:25 +02:00
Stefan Zermatten
4cd058e1fe Set max of slider before value
Prevents unnecessary capping of temp HP to 100
Fixes #89
2017-06-08 09:48:51 +02:00
6 changed files with 29 additions and 5 deletions

View File

@@ -23,6 +23,7 @@
.card { .card {
background: white; background: white;
border-radius: 2px; border-radius: 2px;
position: initial;
} }
.card .top { .card .top {

View File

@@ -1,3 +1,7 @@
body .paper-font-display4, body .paper-font-display3, body .paper-font-title, body .paper-font-caption{
white-space: normal;
}
.white-text { .white-text {
color: #dedede; color: #dedede;
color: rgba(255,255,255,0.87); color: rgba(255,255,255,0.87);

View File

@@ -78,6 +78,20 @@
margin-left: 16px; margin-left: 16px;
} }
.spell.item > div > div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.spell.item > div {
min-width: 0;
}
.spell.item iron-icon {
flex-shrink: 0;
}
.spellLevel { .spellLevel {
-webkit-backface-visibility: hidden; -webkit-backface-visibility: hidden;
-webkit-transform: translateX(0); -webkit-transform: translateX(0);

View File

@@ -28,8 +28,8 @@
{{/unless}} {{/unless}}
</div> </div>
<paper-diff-slider class="tempHitPointSlider flex" <paper-diff-slider class="tempHitPointSlider flex"
value={{left}}
max={{maximum}} max={{maximum}}
value={{left}}
editable pin editable pin
></paper-diff-slider> ></paper-diff-slider>
</div> </div>

View File

@@ -21,10 +21,15 @@
max-width: 300px; max-width: 300px;
padding: 16px; padding: 16px;
text-align: center; text-align: center;
min-width: 0;
}
.intro .section .columns {
max-width: 100%;
} }
.intro paper-button { .intro paper-button {
min-width: 200px; flex-basis: 200px;
} }

View File

@@ -64,7 +64,7 @@
</div> </div>
<div class="section white-text" style="background: #282828"> <div class="section white-text" style="background: #282828">
<div class="columns layout horizontal around-justified wrap"> <div class="columns layout horizontal around-justified wrap">
<div> <div class="layout vertical center">
<div class="paper-font-headline"> <div class="paper-font-headline">
Guide Guide
</div> </div>
@@ -78,7 +78,7 @@
</paper-button> </paper-button>
</a> </a>
</div> </div>
<div> <div class="layout vertical center">
<div class="paper-font-headline"> <div class="paper-font-headline">
Discuss Discuss
</div> </div>
@@ -91,7 +91,7 @@
</paper-button> </paper-button>
</a> </a>
</div> </div>
<div> <div class="layout vertical center">
<div class="paper-font-headline"> <div class="paper-font-headline">
Get involved Get involved
</div> </div>