Created
October 11, 2020 21:56
-
-
Save arielmagbanua/6a7817f0e920da64394ac13e9a89e9f7 to your computer and use it in GitHub Desktop.
Center Div Laravel Bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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