Newbie here.
I have been successfully customizing my theme css configurations either by editing assets/css/screen.css
or css files in /node_modules/@tryghost/shared-theme-assets/assets/css/v2
. I believe the way it works is that my edits overwrites certain defaults.
However, for example if I want to change the color or size of the toggle open/close button which seems to be defined in ghost core frontend code (link to code).
adding
.kg-toggle-heading-svg {
color: rgb(255,0,0);
width: 6px;
}
to screen.css
or cards.css
does not seem to work.
Is there a way to configure these css settings that is outside the theme css files?