Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions app/src/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<div class='lead'>
<div class='container'>
<h1 class='brand-header'><a href='.'><img class='logo' src='allmanak-logo-white.svg' alt='Allmanak'></a></h1><p class='lead-text'>Zoeken naar contactgegevens overheden en politici</p>
<p class='sub-text'>Deze website is niet meer up to date.</p>
</div>
</div>
<div class='navbar'>
Expand Down Expand Up @@ -65,7 +66,7 @@
font-family: 'montserratregular';
}
.lead > .container {
padding-bottom: 1rem;
padding-bottom: 1.5rem;
padding-top: 1rem;
}
.brand-header {
Expand All @@ -80,6 +81,12 @@
font-size: 1.5rem;
margin-left: 2rem;
vertical-align: bottom;
}
.sub-text {
display: inline-block;
font-size: 1.2rem;
margin-left: 2rem;
vertical-align: bottom;
}
/*.report-error {
color: #c2178a;
Expand Down Expand Up @@ -133,4 +140,4 @@
height: 75px;
max-width: 250px;
}
</style>
</style>
6 changes: 3 additions & 3 deletions app/src/components/ReportForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<div class="main" on:click|stopPropagation="{() => console.log()}">
<h2>Fout melden</h2>
<div class="choose">
Betreft het een fout van inhoud of een technische fout van de website?
Betreft het een technische fout van de website? Inhoudelijke fouten kunnen momenteel voorkomen omdat deze website niet meer up to date wordt gehouden. Correcties hierop zijn helaas niet mogelijk.
<div class="line">
<label class:active='{errortype=="content"}'><input bind:group={errortype} type=radio value=content>Inhoudelijke fout</label>
<label class:disabled='{errortype=="content"}'><input bind:group={errortype} type=radio value=content>Inhoudelijke fout</label>
<label class:active='{errortype=="tech"}'><input bind:group={errortype} type=radio value=tech>Technische fout</label>
</div>
</div>
Expand Down Expand Up @@ -88,4 +88,4 @@
font-weight: 600;
cursor: pointer;
}
</style>
</style>