Skip to content
Snippets Groups Projects
Commit 060e0d96 authored by Julian's avatar Julian
Browse files

Reduce padding of list elements in coursebook

parent b0769022
No related branches found
No related tags found
1 merge request!360Resolve "Add absence management to course book student dialog"
Pipeline #189728 failed
<template>
<v-list-item :style="{ scrollMarginTop: '145px' }" two-line>
<v-list-item :style="{ scrollMarginTop: '145px' }" two-line class="px-0">
<v-list-item-content>
<v-subheader class="text-h6">{{
<v-subheader class="text-h6 px-1">{{
$d(date, "dateWithWeekday")
}}</v-subheader>
<v-list max-width="100%" class="pt-0 mt-n1">
<v-list-item
v-for="doc in docs"
:key="'documentation-' + (doc.oldId || doc.id)"
class="px-1"
>
<documentation-modal
:documentation="doc"
......
<template>
<div>
<v-list-item v-for="i in numberOfDays" :key="'i-' + i">
<v-list-item v-for="i in numberOfDays" :key="'i-' + i" class="px-0">
<v-list-item-content>
<v-list-item-title>
<v-skeleton-loader type="heading" />
</v-list-item-title>
<v-list max-width="100%">
<v-list-item v-for="j in numberOfDocs" :key="'j-' + j">
<v-list-item v-for="j in numberOfDocs" :key="'j-' + j" class="px-1">
<DocumentationLoader />
</v-list-item>
</v-list>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment