implemented factory method for links
parent
f611e050f3
commit
dbef4fa686
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"grid-container": [
|
||||||
|
{
|
||||||
|
"title": "Paycor",
|
||||||
|
"description": "Clock in and out, request time off, review health benefits and access paystubs using the Paycor human-resources application.",
|
||||||
|
"imagePath": "PaycorLogo2-Circle_100x100.png",
|
||||||
|
"urlText": "https://www.paycor.com/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Gmail",
|
||||||
|
"description": "Access your company e-mail and a suite of Google apps, including a calendar, instant messaging and cloud storage.",
|
||||||
|
"imagePath": "GmailCircle_100x100.png",
|
||||||
|
"urlText": "https://mail.google.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Workplace",
|
||||||
|
"description": "Get the latest news and connect with colleagues. JDSfaulkner uses Workplace by Facebook for posting and sharing.",
|
||||||
|
"imagePath": "WorkplaceLogo-Circle_100x100.png",
|
||||||
|
"urlText": "https://jdsfaulkner.workplace.com"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -1,6 +1,21 @@
|
|||||||
|
@use "sass:map";
|
||||||
$enable-rounded: true !default;
|
$enable-rounded: true !default;
|
||||||
|
|
||||||
|
|
||||||
@import "node_modules/bootstrap/scss/bootstrap";
|
@import "node_modules/bootstrap/scss/bootstrap";
|
||||||
@import "node_modules/bootstrap/scss/functions";
|
@import "node_modules/bootstrap/scss/functions";
|
||||||
@import "node_modules/bootstrap/scss/variables";
|
@import "node_modules/bootstrap/scss/variables";
|
||||||
@import "node_modules/bootstrap/scss/mixins";
|
@import "node_modules/bootstrap/scss/mixins";
|
||||||
|
|
||||||
|
.web-card {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.web-card-background{
|
||||||
|
background-color: map-get($theme-colors, secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.web-card-background:hover{
|
||||||
|
background-color: map-get($theme-colors, warning);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue