mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Selectively reduce fontsize of tables and log
This commit is contained in:
parent
ec8d030ea7
commit
5f9220802c
|
@ -33,10 +33,11 @@ export default class LogViewer extends Vue {
|
|||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
<style lang="scss" scoped>
|
||||
textarea {
|
||||
width: 100%;
|
||||
min-height: 6em;
|
||||
resize: none;
|
||||
font-size: $fontsize-small;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -26,14 +26,14 @@ export default class ProfitSymbol extends Vue {
|
|||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 0 0.5rem 0.9rem 0.5rem;
|
||||
border-width: 0 0.45rem 0.7rem 0.45rem;
|
||||
border-color: transparent transparent #00db58 transparent;
|
||||
}
|
||||
.triangle-down {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 0.9rem 0.5rem 0 0.5rem;
|
||||
border-width: 0.7rem 0.45rem 0 0.45rem;
|
||||
border-color: #ff0000 transparent transparent transparent;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -189,8 +189,11 @@ export default class TradeList extends Vue {
|
|||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
<style lang="scss" scoped>
|
||||
.card-body {
|
||||
padding: 0 0.2em;
|
||||
}
|
||||
.table-sm {
|
||||
font-size: $fontsize-small;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -1 +1 @@
|
|||
// Overwrite bootstrap scss variables
|
||||
// Overwrite bootstrap scss variables
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
// variables created for the project and not overwrite of bootstrap
|
||||
// variables created for the project and not overwrite of bootstrap
|
||||
|
||||
|
||||
$fontsize-small: 0.9rem;
|
||||
|
|
|
@ -5,4 +5,4 @@
|
|||
@import '~bootstrap-vue/src/index.scss';
|
||||
|
||||
@import '_variables.scss';
|
||||
@import '_styles_ovw.scss';
|
||||
@import '_styles_ovw.scss';
|
||||
|
|
|
@ -7,4 +7,11 @@ module.exports = {
|
|||
},
|
||||
},
|
||||
},
|
||||
css: {
|
||||
loaderOptions: {
|
||||
sass: {
|
||||
additionalData: `@import "@/styles/_variables.scss";`,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user