Skip to content

Commit

Permalink
fix: type and padding
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamadHarith committed Nov 3, 2021
1 parent 11d984f commit 156759f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/app-bar/src/AppBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import Tab from "../components/Tab.svelte";
import Drawer from "../components/Drawer.svelte";
import Dropdown from "../components/Dropdown.svelte";
import type { TabItem, NavItem } from "../types";
import type { NavItem } from "../types";
export let tabItems: TabItem[];
export let tabItems: NavItem[];
export let selecteTabIndex = 0;
export let centerItems: NavItem[];
export let dropdownItems: NavItem[];
Expand Down Expand Up @@ -118,7 +118,7 @@
}
.resp__app-bar__container {
padding: 10px;
padding: 10px 25px 10px 25px;
display: flex;
justify-content: space-between;
width: 100%;
Expand Down

0 comments on commit 156759f

Please sign in to comment.