Skip to content

Commit

Permalink
chore: remove redundant css for FloatingActionButton
Browse files Browse the repository at this point in the history
  • Loading branch information
si3nloong committed Dec 31, 2020
1 parent 4ade442 commit ce201fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions packages/fab/src/FloatingActionButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,18 @@

<style lang="scss">
.responsive-ui-fab {
cursor: pointer;
position: fixed;
display: inline-flex;
justify-content: center;
align-items: center;
cursor: pointer;
bottom: 15px;
right: 15px;
width: 50px;
height: 50px;
background: #fff;
border-radius: 50%;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
cursor: pointer;
z-index: 100;
}
</style>
Expand Down
4 changes: 1 addition & 3 deletions packages/fab/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ export interface FloatingActionButtonEvents {
click?: void;
}

export interface FloatingActionButtonSlots {
default: {};
}
export interface FloatingActionButtonSlots {}

declare class FloatingActionButton extends SvelteComponentTyped<
FloatingActionButtonProps,
Expand Down

0 comments on commit ce201fd

Please sign in to comment.