@descope/web-components-ui 3.1.6 → 3.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -14344,23 +14344,23 @@ let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: c
14344
14344
  width: 100%;
14345
14345
  }
14346
14346
  .wrapper {
14347
- position: relative;
14347
+ display: grid;
14348
14348
  width: 100%;
14349
14349
  }
14350
14350
  code {
14351
+ grid-area: 1 / 1;
14351
14352
  display: block;
14352
14353
  width: 100%;
14353
14354
  min-height: 1em;
14354
- overflow-x: scroll;
14355
- overflow-y: scroll;
14355
+ overflow-x: auto;
14356
14356
  }
14357
14357
  pre {
14358
14358
  margin: 0;
14359
14359
  }
14360
14360
  .copy-btn {
14361
- position: absolute;
14362
- top: 8px;
14363
- right: 8px;
14361
+ grid-area: 1 / 1;
14362
+ place-self: start end;
14363
+ margin: 8px;
14364
14364
  display: flex;
14365
14365
  align-items: center;
14366
14366
  justify-content: center;