.ui-wrap{
  position: relative;
  overflow-y: scroll;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  &::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #c3c3c3;
  }
  &::-webkit-scrollbar-track {
    background-color: transparent;
  }
  > .content {
    line-height: 1.5em;
    margin-bottom: 50px;
    padding: 10px 10px;
  }
  > .action {
    position: sticky;
    display: inline-block;
    bottom: 20px;
    left: 100%;
    transform: translateX(-10px);
  }
}
