Skip to content

Commit

Permalink
Merge pull request #230 from fajarafriansh/develop
Browse files Browse the repository at this point in the history
patch 1.1.9
  • Loading branch information
fajarafriansh authored Jul 31, 2021
2 parents 573529b + 2c7bec1 commit d5f8865
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions components/layout/AppNavigation.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<template>
<header
class="top-0 h-17 fixed z-20 w-full bg-grayscale-1 dark:bg-grayscale-6 py-3 border-b border-grayscale-2 dark:border-grayscale-6 transform translate-y-0 transition duration-300 ease-out"
class="fixed top-0 z-20 w-full py-3 transition duration-300 ease-out transform translate-y-0 border-b h-17 bg-grayscale-1 dark:bg-grayscale-6 border-grayscale-2 dark:border-grayscale-6"
:class="[
{ 'transform -translate-y-full shadow-none': !showNavbar },
lastScrollPosition > 10 ? 'shadow-lg' : '',
]"
>
<div class="container mx-auto flex items-center justify-between">
<div class="container flex items-center justify-between mx-auto">
<nuxt-link
to="/"
class="flex items-center justify-start h-10 w-10 md:w-34"
class="flex items-center justify-start w-10 h-10 md:w-34"
>
<Logo />
</nuxt-link>
<div class="flex items-center justify-end ml-4">
<div class="flex items-center justify-end w-full ml-4 lg:w-1/3">
<SearchBox class="flex-1 max-w-sm" />
<ColormodePicker class="ml-4 lg:ml-8" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/page-sections/CategoriesSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
:class="overflowClasses"
>
<div
class="flex items-center justify-start w-full mt-2 -mx-1 lg:-mx-2"
class="flex items-center justify-start mt-2 -mx-1 lg:w-full lg:-mx-2"
:class="wrapClasses"
>
<CategoryCard
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
// Modules for dev and build (recommended) (https://go.nuxtjs.dev/config-modules)
buildModules: [
// https://go.nuxtjs.dev/eslint
'@nuxtjs/eslint-module',
// '@nuxtjs/eslint-module',
'@nuxtjs/tailwindcss', // https://go.nuxtjs.dev/tailwindcss
'@nuxtjs/svg',
'@nuxtjs/color-mode',
Expand Down

0 comments on commit d5f8865

Please sign in to comment.