All files / src/components/ShareBox index.module.scss

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49                                                                                                 
@import "../../styles/colors";
 
.m-share-box {
  position: fixed;
  inset: auto 0 0;
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: space-around;
  width: 100%;
  background: rgb(255 255 255 / 90%);
}
 
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 8px;
  overflow: hidden;
  font-size: 1rem;
  color: $link-hover;
  border: 1px solid $link-hover;
  border-radius: 50%;
}
 
.share-button-no-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 8px;
  font-size: 1rem;
  color: $link-hover;
}
 
.comment {
  padding-left: 0.15rem;
  line-height: 1.7rem;
  color: $link-hover;
}
 
.top {
  color: $link-hover;
  background: transparent;
}