Skip to content

Commit

Permalink
Merge pull request #185 from zreigz/bug_fix
Browse files Browse the repository at this point in the history
Fix zero state view for normal size
  • Loading branch information
bryk committed Dec 18, 2015
2 parents 3f0b26e + b4f0f62 commit 99e270f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/app/assets/styles/_color_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ $primary: #326DE6;
$delicate: #AAAAAA;
$muted: #888888;
$hoverPrimary: #1254DF;
$body: #eeeeee;
6 changes: 4 additions & 2 deletions src/app/frontend/chrome/chrome.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

@import "../../assets/styles/color_variables";

.kd-toolbar-logo {
height: 42px;
width: 42px;
Expand All @@ -24,7 +26,7 @@
0px 0px 2px 2px rgba(0, 0, 0, 0.098), 0px 0px 5px 1px rgba(0, 0, 0, 0.084);
}

.kd-content, body {
background-color: #eeeeee;
body {
background-color: $body;
height: 100%;
}
6 changes: 6 additions & 0 deletions src/app/frontend/zerostate/zerostate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

@import "../../assets/styles/color_variables";

.kd-content {
background-color: $body;
}

.kd-zerostate-content {
position: fixed;
height: 90%;
Expand Down

0 comments on commit 99e270f

Please sign in to comment.