Skip to content

Commit 53ad900

Browse files
committed
chore: add changelog
1 parent ad14237 commit 53ad900

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/atlas-core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
### Fixed
1010

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

packages/atlas/src/themesource/atlas_core/web/layouts/_layout-atlas.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@
107107
@if $brand-logo !=false {
108108
width: 0;
109109
height: 0;
110-
padding: calc(var(--brand-logo-height, 32px) / 2) calc(var(--brand-logo-width, 32px) / 2);
111-
background-image: url(#{$brand-logo});
110+
padding: calc(var(--brand-logo-height, $brand-logo-height) / 2) calc(var(--brand-logo-width, $brand-logo-height) / 2);
111+
background-image: url(var(--brand-logo, #{$brand-logo}));
112112
background-repeat: no-repeat;
113113
background-position: left center;
114114
background-size: var(--brand-logo-width);

0 commit comments

Comments
 (0)