Skip to content

Commit

Permalink
fix: arlogin styles in 992px-1200px media query space
Browse files Browse the repository at this point in the history
  • Loading branch information
deodorhunter committed Oct 31, 2024
1 parent faf637a commit dac9ae7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
8 changes: 7 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@
### Fix
- ...
-->
-->

## Versione X.X.X (dd/mm/yyyy)

### Fix

- Risolto un problema di visualizzazione grafica per il bottone di login all'area personale per alcune specifiche dimensioni di schermi

## Versione 11.24.3 (24/10/2024)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Button } from 'design-react-kit';
const LoginButton = ({ children, baseLoginUrl, size = 'full' }) => {
return baseLoginUrl ? (
<Button
className="btn-icon"
className="btn-icon login-button"
color="primary"
href={baseLoginUrl}
icon={false}
Expand Down
10 changes: 10 additions & 0 deletions src/theme/ItaliaTheme/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -381,3 +381,13 @@ iframe {
}
}
}

.public-ui
.it-header-slim-wrapper
.it-header-slim-wrapper-content
.it-header-slim-right-zone.header-slim-right-zone
.login-button {
@media (min-width: #{map-get($grid-breakpoints, md)}) and (max-width:#{map-get($grid-breakpoints, xl)}) {
flex: unset;
}
}

0 comments on commit dac9ae7

Please sign in to comment.