Skip to content

Commit ef9628a

Browse files
committed
content is not hidden on small screens
1 parent 8afe348 commit ef9628a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

resources/views/urls/create.blade.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,16 @@
1414
html,body {
1515
height: 100vh;
1616
}
17+
18+
.wrapper {
19+
min-height: 100vh;
20+
}
1721
</style>
1822

1923
</head>
2024
<body>
2125
<div class="container h-100">
22-
<div class="row h-100 align-items-center">
26+
<div class="wrapper row align-items-center">
2327
<div class="col-12">
2428
<h1 class="text-center mb-5">Laravel Short Url</h1>
2529
@if (session('short_url'))

resources/views/urls/edit.blade.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,16 @@
1414
html,body {
1515
height: 100vh;
1616
}
17+
18+
.wrapper {
19+
min-height: 100vh;
20+
}
1721
</style>
1822

1923
</head>
2024
<body>
2125
<div class="container h-100">
22-
<div class="row h-100 align-items-center">
26+
<div class="wrapper row align-items-center">
2327
<div class="col-12">
2428
<h1 class="text-center mb-5">Laravel Short Url</h1>
2529
@if (session('short_url'))

0 commit comments

Comments
 (0)