Skip to content

Commit 00e514e

Browse files
authored
Merge pull request #45 from UC-LeuvenLimburg/Bugs/Broken-bootstrap-in-chrome-logo-&-image-responsiveness
bugfix chrome styling
2 parents 1b7fdc5 + cd63345 commit 00e514e

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

public/css/app.css

+4
Original file line numberDiff line numberDiff line change
@@ -11138,6 +11138,10 @@ a.text-dark:focus {
1113811138
border-radius: 30px;
1113911139
}
1114011140

11141+
.home-img-responsive {
11142+
width: 100%;
11143+
}
11144+
1114111145
/*
1114211146
Styling for Lease views
1114311147
*/

public/js/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -49935,8 +49935,8 @@ __webpack_require__.r(__webpack_exports__);
4993549935
/*! no static exports found */
4993649936
/***/ (function(module, exports, __webpack_require__) {
4993749937

49938-
__webpack_require__(/*! D:\laravelprojects\parkit\resources\js\app.js */"./resources/js/app.js");
49939-
module.exports = __webpack_require__(/*! D:\laravelprojects\parkit\resources\sass\app.scss */"./resources/sass/app.scss");
49938+
__webpack_require__(/*! C:\homesteadProjects\ParkIt\resources\js\app.js */"./resources/js/app.js");
49939+
module.exports = __webpack_require__(/*! C:\homesteadProjects\ParkIt\resources\sass\app.scss */"./resources/sass/app.scss");
4994049940

4994149941

4994249942
/***/ })

resources/sass/home/_home.scss

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
padding: 2em;
44
border-radius: 30px;
55
}
6+
7+
.home-img-responsive {
8+
width:100%;
9+
}

resources/views/home.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h3 class="display-6" class="lead">What do we offer?</h3>
1010
<p>We offer a service that makes it possible to rent or lease a parking spot.
1111
<div class="row justify-content-center">
12-
<img src="{{ asset('images/parking.jpg') }}" alt="parking image">
12+
<img src="{{ asset('images/parking.jpg') }}" class="home-img-responsive" alt="parking image">
1313
</div>
1414
</p>
1515
@guest

resources/views/include/nav.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
22
<div class="container">
33
<a class="navbar-brand" href="{{ url('/') }}">
4-
<img src="{{ asset('images/logo.svg') }}" width="125px">
4+
<object data="{{ asset('images/logo.svg') }}" type="image/svg+xml" width="125px"></object>
55
</a>
66
<button class="navbar-toggler" type="button" data-toggle="collapse"
77
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"

0 commit comments

Comments
 (0)