Update styling on tasks and assignments
This commit is contained in:
parent
3752ba5c1d
commit
9226f44db6
|
|
@ -1,19 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="task">
|
<div class="task">
|
||||||
<chevron-right class="task__icon"></chevron-right>
|
|
||||||
<div class="task__text" v-html="value.text"></div>
|
<div class="task__text" v-html="value.text"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ChevronRight from '@/components/icons/ChevronRight.vue';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: ['value'],
|
props: ['value']
|
||||||
|
|
||||||
components: {
|
|
||||||
ChevronRight
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -21,15 +14,10 @@
|
||||||
@import "@/styles/_variables.scss";
|
@import "@/styles/_variables.scss";
|
||||||
|
|
||||||
.task {
|
.task {
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 45px 1fr;
|
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
|
background-color: $color-brand-light;
|
||||||
&__icon {
|
padding: 20px;
|
||||||
width: 20px;
|
border-radius: $default-border-radius;
|
||||||
padding-top: 4px;
|
|
||||||
fill: $color-brand;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -175,9 +175,10 @@
|
||||||
outline: 0;
|
outline: 0;
|
||||||
color: $color-grey;
|
color: $color-grey;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
border-bottom: 2px solid transparent;
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
border-bottom: 2px solid $color-darkgrey-1;
|
border-bottom-color: $color-darkgrey-1;
|
||||||
color: $color-darkgrey-1;
|
color: $color-darkgrey-1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ export default new Vuex.Store({
|
||||||
showModal: '',
|
showModal: '',
|
||||||
contentBlockPosition: {},
|
contentBlockPosition: {},
|
||||||
scrollPosition: 0,
|
scrollPosition: 0,
|
||||||
moduleSlug: 'mein-neues-umfeld',
|
moduleSlug: 'geld',
|
||||||
filterForGroup: false,
|
filterForGroup: false,
|
||||||
currentContentBlock: '',
|
currentContentBlock: '',
|
||||||
parentRoom: null
|
parentRoom: null
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue