Skip to content

Commit

Permalink
fix(watt): alignment of drawer action items (#3583)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhavat authored Sep 27, 2024
1 parent 0d42a02 commit b3771c8
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 b3771c8

Please sign in to comment.