-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
86 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,5 +40,6 @@ | |
|
||
@screen md { | ||
grid-template-rows: 1fr; | ||
z-index: 2; | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@extends('front.layouts.main') | ||
@extends('front.layouts.auth') | ||
|
||
@section('content') | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@extends('front.layouts.main') | ||
@extends('front.layouts.auth') | ||
|
||
@section('content') | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@extends('front.layouts.main') | ||
@extends('front.layouts.auth') | ||
|
||
@section('content') | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
@extends('front.layouts.main') | ||
|
||
@section('content') | ||
<h1>About</h1> | ||
<article class="max-w-lg"> | ||
<h1>{{ __('About') }}</h1> | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. A accusamus ad aliquam amet architecto deserunt doloremque dolores ducimus eius impedit laudantium obcaecati optio perferendis quibusdam reiciendis, sed sit veniam, voluptatibus. | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. A accusamus ad aliquam amet architecto deserunt doloremque dolores ducimus eius impedit laudantium obcaecati optio perferendis quibusdam reiciendis, sed sit veniam, voluptatibus. | ||
</article> | ||
@endsection |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@extends('front.layouts.app') | ||
|
||
@section('main') | ||
|
||
<div class="sticky grid pin-t px-8 py-16 | md:p-16 md:min-h-screen md:justify-start md:content-center"> | ||
@include('front.layouts.partials.unverified-email-warning') | ||
@include('front.layouts.partials.flashMessage') | ||
<div class="md:-ml-24"> | ||
@yield('content') | ||
</div> | ||
</div> | ||
|
||
@endsection |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
@extends('front.layouts.app') | ||
|
||
@section('main') | ||
<main class="layout-content"> | ||
<div class="flex justify-end p-8 | md:hidden"> | ||
<div class="text-grey-darker" style="width: 12rem"> | ||
@include('front/layouts/partials/logo') | ||
</div> | ||
</div> | ||
<div> | ||
<div class="sticky grid pin-t p-8 | md:p-16 md:min-h-screen md:place-content-center"> | ||
@include('front.layouts.partials.unverified-email-warning') | ||
@include('front.layouts.partials.flashMessage') | ||
|
||
@yield('content') | ||
</div> | ||
|
||
<div class="p-8 | md:p-16"> | ||
@include('front.layouts.partials.unverified-email-warning') | ||
@include('front.layouts.partials.flashMessage') | ||
|
||
@yield('content') | ||
</div> | ||
</main> | ||
|
||
@endsection |
This file contains 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
This file contains 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