Skip to content

Instantly share code, notes, and snippets.

@arielmagbanua
Created October 11, 2020 21:56
Show Gist options
  • Save arielmagbanua/6a7817f0e920da64394ac13e9a89e9f7 to your computer and use it in GitHub Desktop.
Save arielmagbanua/6a7817f0e920da64394ac13e9a89e9f7 to your computer and use it in GitHub Desktop.
Center Div Laravel Bootstrap
@extends('layouts.app-nonav')
@section('styles')
<style>
div.container{
height: calc(100vh - 16px);
}
div.login {
width: 100%;
}
</style>
@endsection
@section('content')
<div class="container d-flex">
<div class="login align-self-center text-center">
<p class="h3">You are not currently logged in.</p>
<a href="{{ $zestUrl }}" class="btn btn-primary">Please login here with your Zest website.</a>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment