Skip to content

Commit

Permalink
Column sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
WilStead committed Sep 2, 2021
1 parent 96538a3 commit 8c667a6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: publish
env:
VERSION: '0.4.0-preview'
VERSION: '0.4.1-preview'
PRERELEASE: true
on:
push:
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.1-preview
### Changed
- Column sizing

## 0.4.0-preview
### Changed
- Update to .NET 6 preview
Expand Down
6 changes: 3 additions & 3 deletions src/ImageEditor.razor
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@inherits AsyncOwningComponentBase<ImageEditorService>

<div class="row g-2 flex-grow-1">
<div class="col d-grid">
<div class="col col-sm-9 d-grid">
@if (IsLoading)
{
<div class="loader">
Expand All @@ -22,7 +22,7 @@
</div>
@if (Editing)
{
<div class="col-auto">
<div class="col col-sm-3">
<div class="card">
<div class="card-body">
@if (ShowEditControls)
Expand Down Expand Up @@ -342,7 +342,7 @@
}
else
{
<div class="col-auto d-flex flex-column">
<div class="col col-sm-3 d-flex flex-column">
@if (ShowEditButton)
{
<div class="row">
Expand Down

0 comments on commit 8c667a6

Please sign in to comment.