Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/atlas-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Fixed

- We fixed an issue where $brand-logo was not visible after upgrading Studio Pro.
- We fixed an issue with radio buttons being distorted in some cases.
- We fixed an app exception caused by fontSize: 0 in the React Native New Architecture.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
border-bottom: var(--navtopbar-border-bottom);

// allow secondary color for different type of navbar
&.topbar-secondary{
&.topbar-secondary {
background: var(--navtopbar-bg-secondary, --navtopbar-bg);
}

Expand Down Expand Up @@ -107,8 +107,9 @@
@if $brand-logo !=false {
width: 0;
height: 0;
padding: calc(var(--brand-logo-height / 2)) calc(var(--brand-logo-width / 2));
background-image: url(var($brand-logo));
padding: calc(var(--brand-logo-height, $brand-logo-height) / 2)
calc(var(--brand-logo-width, $brand-logo-width) / 2);
background-image: url(#{$brand-logo});
background-repeat: no-repeat;
background-position: left center;
background-size: var(--brand-logo-width);
Expand Down
Loading