Skip to content
This repository has been archived by the owner. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prefs
  • Loading branch information
Lauren McCarthy committed Oct 4, 2015
commit 2e482621d8151fb065404b52df849e62a97549cc
16 changes: 10 additions & 6 deletions app/settings/style.scss
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
#settingsContainer {
position: absolute;
background-color: #959595;
background-color: #f4f4f4;
top: 10px;
right: 10px;
z-index: 999;
box-shadow: 0px 0px 6px #999;
box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.16);
color: #fff;
}

#settingsPane {
// width: 178px;
width: 100%;
font-family: montserrat;
// -webkit-box-shadow: 0px 8px 17px -2px #58585b;
font-family: montserrat-bold;

#titleBar {
background-color: #58585b;
padding: 5px 12px 1px;
font-size: 21px;
color: rgba(51, 51, 51, 0.87);
}

#optionsZone {
Expand All @@ -28,6 +27,11 @@
}
}

.section {
border-bottom: dashed 1px #b5b5b5;
margin-bottom: 10px;
}

.hiddenRadio {
overflow: auto;

Expand Down
2 changes: 1 addition & 1 deletion app/settings/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h2>Preferences</h2><div id="close" v-on="click: $root.toggleSettingsPane()">

</div>
<div id="optionsZone">
<div class="hiddenRadio">
<div class="section hiddenRadio">
<p id="consoleText">Console Orientation</p>

<input type="radio" name="consoleOrientation" id="consoleH" v-model="consoleOrientation" value="horizontal" >
Expand Down