Page Title not customizable anymore

Hello there,

I use 1.8.3 as Flatpak and I guess the last update brought the following issue:

I have changed my Page title (either in Theme or as Snippet) as follows, but currently it has no effect anymore:

.inline-title {
  font-family: "Lato Thin";
  font-size: 50px;
  padding-bottom: 0px;
  margin-left: -5px;
  border-bottom: 0.5px solid #bbbbbb;
  width: 100%;
  display: block;
}

It looks like the values of app.css are used. But all my other customizations work fine.

Can you reproduce it?

Thanks a lot!

I found a solution by setting the variables instead:

body {
  --inline-title-font: "Lato Thin";
  --inline-title-size: 50px;
}

That’s probably anyway the better approach. However, it still might be a little bug?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.