diff --git a/src/Navbar.d.ts b/src/Navbar.d.ts index 8ce25ef1..eb511f36 100644 --- a/src/Navbar.d.ts +++ b/src/Navbar.d.ts @@ -4,7 +4,7 @@ import { BackgroundColor } from './shared'; export interface NavbarProps extends svelte.JSX.HTMLAttributes { color?: BackgroundColor; - container?: boolean | 'fluid'; // TODO also sm-xxl? + container?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid'; dark?: boolean; expand?: boolean | string; fixed?: string; diff --git a/src/Navbar.svelte b/src/Navbar.svelte index fc79bfc0..a48eb8ea 100644 --- a/src/Navbar.svelte +++ b/src/Navbar.svelte @@ -38,7 +38,8 @@