diff --git a/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.scss b/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.scss deleted file mode 100644 index dd6e4f6b9f..0000000000 --- a/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.scss +++ /dev/null @@ -1,24 +0,0 @@ -/** - * @license - * Copyright 2020 Energinet DataHub A/S - * - * Licensed under the Apache License, Version 2.0 (the "License2"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -:host { - flex-shrink: 0; - display: flex; - justify-content: flex-end; - gap: var(--watt-space-m); - margin-left: auto; - margin-right: var(--watt-space-ml); -} diff --git a/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.ts b/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.ts index 292f714275..bff957c5d3 100644 --- a/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.ts +++ b/libs/watt/src/lib/components/drawer/watt-drawer-actions.component.ts @@ -18,8 +18,18 @@ import { Component } from '@angular/core'; @Component({ selector: 'watt-drawer-actions', - template: ``, - 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: ``, }) export class WattDrawerActionsComponent {}