The site name and site slogan text appear to have their font size fixed to the same as the main content.

The file style.css contains the following code:

#site-name, .site-name { font-size: 1.6em; }
#site-slogan, .site-slogan { font-size: 0.929em; }
@media all and (min-width: 901px) { #site-name, .site-name { font-size: 1.821em; }}

So it seems intended that the site name and slogan use different font sizes, but this isn't working. I tried modifying the CSS, but that had no effect. Something else appears to be overriding these styles, but I can't figure out what.

E.g. In attached screenshot, site name is "Lorem ipsum" and slogan is "Ut enim ad minim veniam". It has the logo image disabled.

Issue fork zircon-2719917

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dscarlett created an issue. See original summary.

dscarlett’s picture

The file css/style.css was not being loaded at all. I was able to fix this problem by adding the following line to zircon.libraries.yml, under "global-styling:", "css:", "base:".

css/style.css: {}

elakiyasamuel’s picture

Assigned: Unassigned » elakiyasamuel
elakiyasamuel’s picture

if i add style.css under "global-styling:", "css:", "base:" theme font and size completely changed. I tried to add above style to sass/*.scss file, but it changes stylesheet/*.css files instead css/*.css. Only css/*.css files included in info file which could not be accessed. Anyway style.css is not included anywhere in the theme, here i remove style.css from zircon.

elakiyasamuel’s picture

Assigned: elakiyasamuel » Unassigned