Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Commit

Permalink
refs #6
Browse files Browse the repository at this point in the history
no longer leaving twice as much space to the right as needed
slight increase in white to make the text easier to read
  • Loading branch information
Idrinth committed Aug 6, 2016
1 parent e29a9b4 commit b2d14d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mods/tier.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ idrinth.tier = {
start: function () {
'use strict';
var pos = 1;
while ( 0 < window.innerWidth - 140 * ( pos + 2 ) ) {
while ( 0 < window.innerWidth - 140 * ( pos + 1 ) ) {
this.taggedSlots[( pos * 140 ).toString ()] = null;
pos++;
}
Expand Down
4 changes: 2 additions & 2 deletions script-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ td.is-os {
}

.idrinth-tier-box > div {
background:rgba(255,255,255,0.3);
background:rgba(255,255,255,0.45);
}
.idrinth-tier-box > div > div {
width: 50%;
Expand All @@ -672,5 +672,5 @@ td.is-os {
display:block;
padding-bottom:2px;
text-align:center;
background:rgba(255,255,255,0.3);
background:rgba(255,255,255,0.25);
}

0 comments on commit b2d14d7

Please sign in to comment.