Skip to content

Commit 53714cf

Browse files
committed
variables and typo
1 parent 32a82fc commit 53714cf

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

docs/classic-ui/theming/barceloneta.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ the `scss/` folder.
140140

141141
## Customize Bootstrap and Barceloneta components
142142

143-
The base `theme/theme.scss` file provides all imports of the dependent Bootstrap
143+
The base `scss/theme.scss` file provides all imports of the dependent Bootstrap
144144
and Barceloneta resources to build the default Classic UI theme.
145145
As a convenience `bobtemplates.plone` has created three files to customize
146146
variables, maps and custom SCSS code.
@@ -153,8 +153,15 @@ scss/_variables.scss
153153

154154
### SCSS and root variables
155155

156-
- show example how to override variables
157-
- complete list of variables below
156+
To set a custom font you have three variables you can modify:
157+
158+
```scss
159+
$font-family-sans-serif: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif!default;
160+
$font-family-condensed: "Roboto Condensed", "Arial Narrow", sans-serif!default; //just on toolbar
161+
$font-family-serif: Georgia, "Times New Roman", Times, serif!default;
162+
```
163+
164+
TODO: Link to training docs or take parts over here?
158165

159166
### Properties
160167

@@ -187,7 +194,7 @@ If you have a custom workflow state you can add your state color to the default
187194

188195
```scss
189196
$custom-state-colors: (
190-
"my-custom-state-id": #ff0000;
197+
"my-custom-state-id": "#ff0000";
191198
);
192199

193200
// Merge the maps

0 commit comments

Comments
 (0)