oceanprotocol/market

View on GitHub
src/components/Asset/AssetContent/Nft/index.module.css

Summary

Maintainability
Test Coverage
.nftImage {
  position: relative;
  margin: 0;
  border-right: 1px solid var(--border-color);
  width: calc(var(--spacer) * 2);
  height: calc(var(--spacer) * 2);
  display: flex;
  align-items: center;
}

.nftImage > svg:first-of-type {
  width: 100%;
  height: 100%;
}

.nftImage img {
  height: auto;
}

.nftImage > svg:first-of-type {
  transform: scale(0.7);
}

.nftImage .tooltip {
  position: absolute;
  padding: 0;
  left: 0;
  bottom: 0;
}

.nftImage .tooltip svg {
  fill: var(--font-color-text);
}