Skip to content

Commit bbc4ce7

Browse files
committed
fix(fonts): removed quotes in css attributes
1 parent ead9a8d commit bbc4ce7

File tree

1 file changed

+4
-4
lines changed
  • styling/controlling-visual-appearance

1 file changed

+4
-4
lines changed

styling/controlling-visual-appearance/fonts.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ WebComponentsIcons is the font used for rendering iconography in the Telerik UI
9191

9292
<style>
9393
@font-face {
94-
font-family: "WebComponentsIcons";
95-
src: url("https://d35islomi5rx1v.cloudfront.net/ajaxz/2024.4.1114/Common/WebComponentsIcons.woff") format("truetype");
94+
font-family: WebComponentsIcons;
95+
src: url(https://d35islomi5rx1v.cloudfront.net/ajaxz/2024.4.1114/Common/WebComponentsIcons.woff) format(truetype);
9696
font-display: swap;
9797
}
9898

@@ -103,7 +103,7 @@ WebComponentsIcons is the font used for rendering iconography in the Telerik UI
103103
}
104104

105105
#fontcodes span.icon {
106-
font-family: "WebComponentsIcons", monospace;
106+
font-family: WebComponentsIcons, monospace;
107107
font-size: 42px;
108108
color: black;
109109
}
@@ -739,7 +739,7 @@ The following example demonstrates how to use the `@font-face` rule to load the
739739
```CSS
740740
<style>
741741
@font-face {
742-
font-family: "WebComponentsIcons";
742+
font-family: WebComponentsIcons;
743743
src: url("https://d35islomi5rx1v.cloudfront.net/ajaxz/2024.4.1114/Common/WebComponentsIcons.woff") format("truetype");
744744
font-display: swap;
745745
}

0 commit comments

Comments
 (0)