Skip to content

Commit

Permalink
## 14.40.0 - 2024-10-28
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Oct 27, 2024
1 parent f0cefc5 commit c032e5f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 14.40.0 - 2024-10-28

### Changed
- Max and min width for sidebar

## 14.39.0 - 2024-10-24

### Changed
Expand Down
2 changes: 1 addition & 1 deletion public/css/orchid.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/css/orchid.rtl.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions resources/sass/core/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ body {

@include media-breakpoint-up(xl) {
.aside {
min-width: $app-aside-min-width;
max-width: $app-aside-width;
width: $app-aside-width;
max-width: $app-aside-max-width;
min-height: 100vh;

nav {
Expand Down
4 changes: 2 additions & 2 deletions resources/sass/theme/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ $table-group-separator-color: lighten($border-color, 2%);
$table-striped-color: lighten($dark, 4.5%);
$table-hover-bg: rgba($dark, .045) !default;

$app-aside-min-width: 20em;
$app-aside-width: 280px;
$app-aside-width: 20em;
$app-aside-max-width: 280px;
$aside-wrap-main-width: 0px;
$app-aside-nav-height: 40px; //2,857rem;
$app-aside-folded-width: 60px;
Expand Down
2 changes: 1 addition & 1 deletion src/Platform/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Dashboard
*
* @deprecated Use `Dashboard::version()` instead.
*/
public const VERSION = '14.39.0';
public const VERSION = '14.40.0';

/**
* @deprecated
Expand Down

0 comments on commit c032e5f

Please sign in to comment.