Improved tab contrast

This commit is contained in:
Joel Collins 2020-07-05 16:55:10 +01:00
parent 4cb3ae03ed
commit 646645cc1d
3 changed files with 24 additions and 8 deletions

View file

@ -93,7 +93,9 @@ export default {
@import "../../assets/less/theme.less";
.tabicon-active {
color: @global-primary-background !important;
color: #fff !important;
background-color: @global-primary-background !important;
box-shadow: @small-shadow;
}
.hook-inverse() {

View file

@ -153,7 +153,10 @@ export default {
};
</script>
<style lang="less">
<style lang="less" scoped>
// Custom UIkit CSS modifications
@import "../../assets/less/theme.less";
.settings-pane {
border-width: 0 1px 0 0;
border-style: solid;
@ -170,4 +173,9 @@ export default {
border-style: solid;
border-color: rgba(180, 180, 180, 0.25);
}
.settings-nav li > a {
padding-left: 6px !important;
border-radius: @button-border-radius;
}
</style>