Skip to content
This repository has been archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
Merge branch 'main' of github.com:metmuseum/marble into security-1-24-22
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhmarsh committed Jan 24, 2022
2 parents f59d7f4 + 1080432 commit 1f98ffc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/marble.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metmuseum/marble",
"version": "0.13.4",
"version": "0.13.6",
"description": "The Design System of The Metropolitan Museum Of Art",
"main": "./src/index.mjs",
"style": "./dist/marble.css",
Expand Down
4 changes: 3 additions & 1 deletion src/base/mixins/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
@import "typography";
@import "buttons";

/* stylelint-disable */
@mixin line-clamp($lines) {
-webkit-box-orient: vertical;
display: box;
display: -webkit-box;
-webkit-line-clamp: $lines;
overflow: hidden;
text-overflow: ellipsis;
}
/* stylelint-enable */
2 changes: 1 addition & 1 deletion src/components/audio-player/audio-player.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const audioPlayerMarkUp = ({model, options}) => html`
src="${playlistTrack.image.small}"
/>
<div class="audio-player__playlist-track-title">${playlistTrack.title}</div>
<div></div>
<!-- <div> track length goes here if we have it </div> -->
</li>`;}).join("")}` : ""}</ol> <!-- no whitespace! :empty needs to work to hide it -->
<div class="audio-player__transcript-section audio-player__transcript-section--transcript-${!!model?.track?.transcript?.length} js-audio-player__transcript-section">
Expand Down

0 comments on commit 1f98ffc

Please sign in to comment.