Added padding

This commit is contained in:
Scott E. Graves
2018-10-03 22:38:51 -05:00
parent 4e5cf652c9
commit 712ad932be
4 changed files with 8 additions and 5 deletions

View File

@@ -2,5 +2,6 @@
padding: 0; padding: 0;
margin: 0; margin: 0;
width: 100%; width: 100%;
box-sizing: border-box;
} }

View File

@@ -1,4 +1,5 @@
.MountItems { .MountItems {
padding: 0; padding: 0;
width: 100%; width: 100%;
box-sizing: border-box;
} }

View File

@@ -189,6 +189,7 @@ class MountItems extends Component {
pid={this.state.Hyperspace.PID} pid={this.state.Hyperspace.PID}
platform={this.props.platform} platform={this.props.platform}
title={'Hyperspace'}/> title={'Hyperspace'}/>
<div style={{paddingTop: '8px'}}/>
<MountItem allowConfig={this.props.allowConfig} <MountItem allowConfig={this.props.allowConfig}
allowMount={this.state.Sia.AllowMount} allowMount={this.state.Sia.AllowMount}
autoMount={this.props.sia.AutoMount} autoMount={this.props.sia.AutoMount}

View File

@@ -8,11 +8,11 @@
--control_transparent_background: rgba(60, 60, 70, 0.4); --control_transparent_background: rgba(60, 60, 70, 0.4);
--control_dark_transparent_background: rgba(15, 15, 15, 0.8); --control_dark_transparent_background: rgba(15, 15, 15, 0.8);
--text_color: rgba(200, 205, 220, 0.75); --text_color: rgba(200, 205, 220, 0.8);
--text_color_error: rgba(203, 120, 120, 0.75); --text_color_hover: rgba(200, 205, 220, 0.8);
--text_color_hover: rgba(200, 205, 220, 0.75); --text_color_error: rgba(203, 120, 120, 0.8);
--heading_text_color: rgba(140, 169, 203, 0.75); --heading_text_color: rgba(140, 169, 203, 0.8);
--heading_other_text_color: rgba(200, 205, 220, 0.75); --heading_other_text_color: rgba(200, 205, 220, 0.8);
--text_color_transition: color 0.3s; --text_color_transition: color 0.3s;
} }