Skip to content

Commit

Permalink
fix: toolbar icons paddings are smaller (#1878)
Browse files Browse the repository at this point in the history
  • Loading branch information
derschnee68 authored Nov 6, 2024
1 parent a232efc commit 883f6eb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div style="display: flex; justify-content: space-between">
<div class="toolbar">
<span>
<button
mat-icon-button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@ import { OpenSeaDragonService } from './open-sea-dragon.service';
@Component({
selector: 'app-still-image-toolbar',
templateUrl: './still-image-toolbar.component.html',
styles: [
`
button {
width: 32px !important;
}
.toolbar {
display: flex;
justify-content: space-between;
padding-right: 16px;
}
`,
],
})
export class StillImageToolbarComponent {
@Input({ required: true }) resource!: ReadResource;
Expand Down

0 comments on commit 883f6eb

Please sign in to comment.