Skip to content

Commit

Permalink
minor improvements to frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
MilchRatchet committed Aug 2, 2020
1 parent 024ac06 commit a3cb63f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SubBox/Models/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public enum DownloadQuality { H2160F60, H2160F30, H1440F60, H1440F30, H1080F60,
[JsonProperty]
public static string PicOfTheDayUser { get; set; }
[JsonProperty]
public static string Username { get; set; }
public static string Username { get; set; } = "Enter Username here...";
[JsonProperty]
public static string Notes { get; set; }
public static string Notes { get; set; } = "Enter your notes here...";
[JsonProperty]
public static bool FirstStart { get; set; }
[JsonProperty]
Expand Down
2 changes: 1 addition & 1 deletion SubBox/wwwroot/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ nav div {
height: auto;
padding: 0;
background-color: var(--nav_bg_t);
backdrop-filter: blur(10px);
backdrop-filter: blur(20px);
z-index: 500;
border: 1px solid var(--video_bd_bot);
border-left: none;
Expand Down
2 changes: 1 addition & 1 deletion SubBox/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
<div id="profileUI" v-show="profileMode" class="profileOverlay" v-bind:style="{ 'background-image': 'url(' + settings.PicOfTheDayUrl + ')' }">
<div class="profileBlur">
<div class="profileHeader">
<input v-model="settings.Username"></input>
<input v-model="settings.Username" onfocus="this.setSelectionRange(0,this.value.length);"></input>
</div>
<div class="profileOption">
<p>Since {{settings.FirstUse}}</p>
Expand Down

0 comments on commit a3cb63f

Please sign in to comment.