Added Eloquent and Phinx for handling database connections and migrations; added a Ticket model and a simple ticket/create form to create new tickets

This commit is contained in:
2022-11-20 22:25:29 -05:00
parent 41aca6215e
commit 830a950bf4
16 changed files with 2073 additions and 15 deletions

View File

@ -4,15 +4,22 @@ $primary-color-highlight: darken($primary-color, 10%)
$box-shadow-1: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23)
$box-shadow-2: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23)
$nav-height: 60px
body
padding-top: $nav-height
background: lightgrey
.container
max-width: 1100px
padding: 20px 30px
#main-nav
position: fixed
top: 0
left: 0
width: 100%
height: 60px
height: $nav-height
background: #212121
color: #eee
font-size: 2.75rem
@ -36,3 +43,7 @@ body
&:hover
color: $primary-color-highlight
#main-wrapper
margin-top: 25px
background: white