Skip to content
Snippets Groups Projects
Commit 5e36d0ef authored by Konstantinos Platis's avatar Konstantinos Platis
Browse files

Fixed Call to Action Buttons not having space between them in Safari

parent 0a4d6f84
No related branches found
No related tags found
2 merge requests!79Merge release candidate v2.7.1 to master,!78Resolve "Call to action buttons do not have space between them in Safari"
......@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed items placed in right sidebar of Section not receiving the correct classes
- Fixed Margin Component opacity not working when set to 0
- Modified Event pattern to render breadcrumbs only if /events url exists
- Fixed Call to Action Buttons not having space between them in Safari
## [2.7.0] - 09/03/2020
......
......@@ -23,7 +23,8 @@
font-family: "cern-icons";
src: url("//framework.web.cern.ch/framework/3.0/fonts/cern/cern.eot?") format("eot"), url("//framework.web.cern.ch/framework/3.0/fonts/cern/cern.woff2") format("woff2"), url("//framework.web.cern.ch/framework/3.0/fonts/cern/cern.woff") format("woff"), url("//framework.web.cern.ch/framework/3.0/fonts/cern/cern.ttf") format("truetype"), url("//framework.web.cern.ch/framework/3.0/fonts/cern/cern.svg#cern-icons") format("svg"); }
.component-call-to-action {
word-break: break-all; }
word-break: break-all;
margin-top: 10px; }
.component-call-to-action.center {
text-align: center; }
.component-call-to-action.left {
......@@ -93,3 +94,5 @@
font-weight: normal; }
.component-call-to-action__wrapper.simple-link:hover a {
background: transparent; }
/*# sourceMappingURL=calltoaction.component.css.map */
......@@ -45,6 +45,8 @@
//* ****************************************** call to actions with icon */
.component-call-to-action {
word-break: break-all;
margin-top: 10px;
&.center {
text-align: center;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment