Skip to content

Commit 2fcb4f2

Browse files
committed
Cleanup
1 parent 367d767 commit 2fcb4f2

File tree

3 files changed

+9
-42
lines changed

3 files changed

+9
-42
lines changed

public/css/app.css

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -883,32 +883,6 @@ video {
883883
height: 1rem;
884884
}
885885

886-
.min-h-fit {
887-
min-height: -webkit-fit-content;
888-
min-height: -moz-fit-content;
889-
min-height: fit-content;
890-
}
891-
892-
.min-h-max {
893-
min-height: -webkit-max-content;
894-
min-height: -moz-max-content;
895-
min-height: max-content;
896-
}
897-
898-
.min-h-full {
899-
min-height: 100%;
900-
}
901-
902-
.min-h-screen {
903-
min-height: 100vh;
904-
}
905-
906-
.min-h-min {
907-
min-height: -webkit-min-content;
908-
min-height: -moz-min-content;
909-
min-height: min-content;
910-
}
911-
912886
.w-full {
913887
width: 100%;
914888
}
@@ -1895,6 +1869,10 @@ video {
18951869
width: 33.333333%;
18961870
}
18971871

1872+
.md\:w-64 {
1873+
width: 16rem;
1874+
}
1875+
18981876
.md\:grid-cols-2 {
18991877
grid-template-columns: repeat(2, minmax(0, 1fr));
19001878
}

public/js/app.js

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21624,7 +21624,7 @@ var _hoisted_5 = /*#__PURE__*/_withScopeId(function () {
2162421624
});
2162521625

2162621626
var _hoisted_6 = {
21627-
"class": "md:hidden block"
21627+
"class": "lg:hidden block"
2162821628
};
2162921629

2163021630
var _hoisted_7 = /*#__PURE__*/_withScopeId(function () {
@@ -21681,20 +21681,11 @@ var _hoisted_16 = {
2168121681
function render(_ctx, _cache) {
2168221682
var _component_cart_component = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("cart-component");
2168321683

21684-
var _component_router_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("router-link");
21685-
2168621684
var _component_mobile_menu = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("mobile-menu");
2168721685

21688-
return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementBlock)("header", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_3, [_hoisted_4, _hoisted_5, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_6, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_router_link, {
21689-
to: "/checkout"
21690-
}, {
21691-
"default": (0,vue__WEBPACK_IMPORTED_MODULE_0__.withCtx)(function () {
21692-
return [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_cart_component)];
21693-
}),
21694-
_: 1
21695-
/* STABLE */
21686+
var _component_router_link = (0,vue__WEBPACK_IMPORTED_MODULE_0__.resolveComponent)("router-link");
2169621687

21697-
})])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_mobile_menu), _hoisted_7, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_8, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("nav", _hoisted_10, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("ul", _hoisted_11, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("li", _hoisted_12, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_router_link, {
21688+
return (0,vue__WEBPACK_IMPORTED_MODULE_0__.openBlock)(), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementBlock)("header", _hoisted_1, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_2, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_3, [_hoisted_4, _hoisted_5, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_6, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_cart_component)])]), (0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_mobile_menu), _hoisted_7, (0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_8, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_9, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("nav", _hoisted_10, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("ul", _hoisted_11, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("li", _hoisted_12, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createVNode)(_component_router_link, {
2169821689
tabindex: "0",
2169921690
to: "/"
2170021691
}, {

resources/js/components/Header/Navbar.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
aria-label="Nettbutikk logo"
2020
src="../../../img/svg/MobileLogo.svg"
2121
/>
22-
<div class="md:hidden block">
23-
<router-link to="/checkout">
24-
<cart-component />
25-
</router-link>
22+
<div class="lg:hidden block">
23+
<cart-component />
2624
</div>
2725
</div>
2826
<mobile-menu />

0 commit comments

Comments
 (0)