v0.7.1 - Major css fixes

This commit is contained in:
frederikpyt 2020-08-11 12:54:28 +02:00
parent c2ae6e08c3
commit b51704cc26
3 changed files with 6 additions and 6 deletions

View File

@ -11,12 +11,12 @@
}
</style>
<main>
<h1 class="text-center sde-blue mt-0">{{__('msg.aktiviteter')}}</h1>
<h1 style="margin-bottom: auto" class="text-center sde-blue mt-0">{{__('msg.aktiviteter')}}</h1>
<div style="padding: 4px; margin-top: .25rem; text-align: justify; ">
<h2 class="text-center sde-blue mt-0">{{ $event->name }}</h2>
{!!$event->description!!}
</div>
<button onclick="window.history.back()" class="btn btn-sde-blue text-white mb-1 mt-1" >{{__('msg.tilbage')}}</button>
<button style="margin-top: auto" onclick="window.history.back()" class="btn btn-sde-blue text-white mb-1 mt-1" >{{__('msg.tilbage')}}</button>
</main>

View File

@ -5,7 +5,7 @@
@section("content")
<main>
<h1 class="text-center sde-blue mb-0">{{__('msg.tilmeldteaktiviteter')}}</h1>
<h1 class="text-center sde-blue mb-0" style="margin-bottom: auto">{{__('msg.tilmeldteaktiviteter')}}</h1>
{!! session()->get('eventunsubscribed') !!}
@if(!$userevents->isEmpty())
@foreach($userevents as $userevent)
@ -21,6 +21,6 @@
@else
<p class="text-center">{{__('msg.duharikketilmeldtdignogenaktiviteter')}}!</p>
@endif
<a href="{{ route("events.index") }}" type="submit" class="mt-2 btn text-center btn-sde-blue">{{__('msg.tilbage')}}</a>
<a href="{{ route("events.index") }}" type="submit" style="margin-top: auto" class="mt-2 btn text-center btn-sde-blue">{{__('msg.tilbage')}}</a>
</main>
@endsection

View File

@ -11,12 +11,12 @@
}
</style>
<main>
<h1 class="text-center sde-blue mt-0">{{__('msg.vejledning')}}</h1>
<h1 style="margin-bottom: auto" class="text-center sde-blue mt-0">{{__('msg.vejledning')}}</h1>
<div style="padding: 4px; margin-top: .25rem; text-align: justify; ">
<h2 class="text-center sde-blue mt-0">{{ $guide->name }}</h2>
{!!$guide->guide_articles!!}
</div>
<button onclick="window.history.back()" class="btn btn-sde-blue text-white mb-1 mt-1" >{{__('msg.tilbage')}}</button>
<button style="margin-top: auto" onclick="window.history.back()" class="btn btn-sde-blue text-white mb-1 mt-1" >{{__('msg.tilbage')}}</button>
</main>