Move outline logic to themes

This commit is contained in:
Preston 2020-09-17 08:23:50 -04:00
parent 3a0f285eff
commit 873c02bf74
3 changed files with 9 additions and 9 deletions

View File

@ -11,14 +11,6 @@ body {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
} }
.hideOutlines *:focus {
outline: none;
}
.rightAligned: {
text-align: right;
}
.routerView { .routerView {
margin-left: 200px; margin-left: 200px;
margin-top: 80px; margin-top: 80px;

View File

@ -31,4 +31,4 @@
<style src="./themes.css" /> <style src="./themes.css" />
<style src="./videoJS.css" /> <style src="./videoJS.css" />
<style src="./App.css" /> <style scoped src="./App.css" />

View File

@ -449,6 +449,14 @@ body {
background-color: var(--bg-color); background-color: var(--bg-color);
} }
.hideOutlines *:focus {
outline: none;
}
.rightAligned: {
text-align: right;
}
a:link { a:link {
color: var(--link-color); color: var(--link-color);
} }