Skip to content

Commit

Permalink
## 14.12.2 - 2023-09-20
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Sep 20, 2023
1 parent dc7c2a0 commit 8a5885b
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.12.2 - 2023-09-20

### Fixed
- Overflow icons on the main menu
- Menu height on mobile

## 14.12.1 - 2023-09-20

### Added
Expand Down
4 changes: 2 additions & 2 deletions public/css/orchid.css

Large diffs are not rendered by default.

10 changes: 5 additions & 5 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.

2 changes: 1 addition & 1 deletion resources/sass/core/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ body {
}

.aside {
height: 60px;
height: calc(1.325rem + .9vw + 2em);
transition: all 300ms ease;
}

Expand Down
2 changes: 1 addition & 1 deletion resources/sass/theme/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ $enable-responsive-font-sizes: true;


// Navigation
$nav-link-padding-y: .650rem;
$nav-link-padding-y: .625rem;

// Breadcrumbs
$breadcrumb-active-color: #495057;
Expand Down
2 changes: 1 addition & 1 deletion resources/views/actions/menu.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{{ $attributes }}
>
@isset($icon)
<x-orchid-icon :path="$icon" class="{{ empty($name) ?: 'me-2'}}"/>
<x-orchid-icon :path="$icon" class="{{ empty($name) ?: 'me-2 overflow-visible'}}"/>
@endisset

<span class="me-2">{{ $name ?? '' }}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/Platform/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Dashboard
/**
* ORCHID Version.
*/
public const VERSION = '14.12.1';
public const VERSION = '14.12.2';

/**
* @deprecated
Expand Down

0 comments on commit 8a5885b

Please sign in to comment.