Move variables to separate folder

This commit is contained in:
kolaente 2021-01-23 16:15:30 +01:00
parent 94b1624be5
commit a9ff10aeba
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
7 changed files with 6 additions and 4 deletions

View File

@ -442,7 +442,7 @@ export default {
<style lang="scss">
@import '../../../node_modules/highlight.js/scss/atelier-heath-light';
@import '../../../node_modules/easymde/dist/easymde.min.css';
@import '../../styles/theme/variables';
@import '../../styles/theme/variables/all';
.editor {
.clear {

View File

@ -44,7 +44,7 @@ export default {
</script>
<style lang="scss" scoped>
@import '../../../styles/theme/variables';
@import '../../../styles/theme/variables/all';
.priority-label {
display: inline-flex;

View File

@ -250,7 +250,7 @@ export default {
</script>
<style lang="scss">
@import '@/styles/theme/variables';
@import '@/styles/theme/variables/all';
.add-task-relation-button {
margin-top: -3rem;

View File

@ -1,4 +1,4 @@
@import 'variables';
@import 'variables/all';
@import 'theme';
@import 'content';

View File

@ -0,0 +1,2 @@
@import 'colors';
@import 'variables';