Skip to content

Commit

Permalink
Merge pull request #555 from appfolio/replaceShdow0
Browse files Browse the repository at this point in the history
Use correct shadow-none class
  • Loading branch information
gthomas-appfolio authored May 30, 2019
2 parents f219afc + 2c8c2b4 commit bd4ebb6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .storybook/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const APM_THEMES = [
{
name: 'APM/Saffron',
url:
'https://d36t0nm30n26wn.cloudfront.net/saffron/4.0.2/bootstrap-saffron.min.css'
'https://d36t0nm30n26wn.cloudfront.net/saffron/4.3.1/bootstrap-saffron.min.css'
},
{
name: 'APM/Cayenne',
Expand Down
4 changes: 2 additions & 2 deletions .storybook/preview-head.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<link id="theme" rel="stylesheet" href="https://d36t0nm30n26wn.cloudfront.net/saffron/4.0.3/bootstrap-saffron.min.css">
<link id="theme" rel="stylesheet" href="https://d36t0nm30n26wn.cloudfront.net/saffron/4.3.1/bootstrap-saffron.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin:100,400,600,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700" rel="stylesheet">
<link href="https://use.typekit.net/uao7jmm.css" rel="stylesheet">
<link href="https://use.typekit.net/uao7jmm.css" rel="stylesheet">
4 changes: 2 additions & 2 deletions docs/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
</script>
<title>Storybook</title>
<link id="theme" rel="stylesheet" href="https://d36t0nm30n26wn.cloudfront.net/saffron/4.0.3/bootstrap-saffron.min.css">
<link id="theme" rel="stylesheet" href="https://d36t0nm30n26wn.cloudfront.net/saffron/4.3.1/bootstrap-saffron.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
Expand All @@ -30,4 +30,4 @@
<div id="error-display"></div>
<script type="text/javascript" src="static/preview.8146a4ef49da8a14d42f.bundle.js"></script></body>

</html>
</html>
2 changes: 1 addition & 1 deletion src/components/SummaryBoxItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const SummaryBoxItem = ({ className, label, reverse, value, ...props }) => {
<Card
color="secondary"
outline
className={classnames('rounded-0 shadow-0 bg-white border-secondary', className)}
className={classnames('rounded-0 shadow-none bg-white border-secondary', className)}
{...props}
>
<CardBody className={bodyClassNames}>
Expand Down

0 comments on commit bd4ebb6

Please sign in to comment.