From 103770a53dd5d191a12c036ba9a8e553a942789b Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 27 Feb 2024 18:02:27 +0100 Subject: [PATCH 1/2] fix property box zindex --- src/Css/Browser.elm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Css/Browser.elm b/src/Css/Browser.elm index 91ecab69..9870b5a9 100644 --- a/src/Css/Browser.elm +++ b/src/Css/Browser.elm @@ -2,12 +2,14 @@ module Css.Browser exposing (..) import Config.View exposing (Config) import Css exposing (..) +import Util.Css root : Config -> Float -> List Style root vc width = position absolute :: height (px 0) + :: (zIndex <| int <| Util.Css.zIndexMainValue - 1) :: (maxWidth <| px width) :: vc.theme.browser.root From e944dde96ea0f4814d241b73db4d301553d62650 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 27 Feb 2024 18:03:14 +0100 Subject: [PATCH 2/2] adapt changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a38a3ca..721831c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [24.01.1] - 2024-02-27 + +### Fixed + +- Layering of property box (z-index) + ## [24.01.0] - 2024-01-10 ### Added - beta support for the tron currency ([382](https://github.com/graphsense/graphsense-dashboard/issues/382))