Skip to content

Commit

Permalink
fix(watt): alignment of drawer action items
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhavat committed Sep 26, 2024
1 parent 66194cc commit 1135609
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 26 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,18 @@ import { Component } from '@angular/core';

@Component({
selector: 'watt-drawer-actions',
template: `<ng-content select="watt-button" />`,
styleUrls: ['./watt-drawer-actions.component.scss'],
standalone: true,
styles: `
:host {
flex-shrink: 0;
display: flex;
justify-content: flex-end;
align-items: flex-start;
gap: var(--watt-space-m);
margin-left: auto;
margin-right: var(--watt-space-ml);
}
`,
template: `<ng-content select="watt-button" />`,
})
export class WattDrawerActionsComponent {}

0 comments on commit 1135609

Please sign in to comment.