static get styles()

in web/src/components/controls/copy-link-button.js [36:69]


  static get styles() {
    return [
      globalStyles,
      css`
        .link-button {
          background-color: #e8e7e7;
          border: 1px solid #dcdbdb;
          color: black;
          padding: 10px 4px 10px 4px;
          width: 110px;
          text-align: center;
          text-decoration: none;
          font-size: 16px;
          cursor: pointer;
          border-radius: 4px;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .link-button-label {
          color: #4b4949;
        }

        .link-button:hover {
          background-color: #dedede;
        }

        .tooltip:hover .tooltip-text {
          visibility: hidden;
        }
      `,
    ];
  }