@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.
@@ -20092,23 +20092,23 @@ let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: c
20092
20092
  width: 100%;
20093
20093
  }
20094
20094
  .wrapper {
20095
- position: relative;
20095
+ display: grid;
20096
20096
  width: 100%;
20097
20097
  }
20098
20098
  code {
20099
+ grid-area: 1 / 1;
20099
20100
  display: block;
20100
20101
  width: 100%;
20101
20102
  min-height: 1em;
20102
- overflow-x: scroll;
20103
- overflow-y: scroll;
20103
+ overflow-x: auto;
20104
20104
  }
20105
20105
  pre {
20106
20106
  margin: 0;
20107
20107
  }
20108
20108
  .copy-btn {
20109
- position: absolute;
20110
- top: 8px;
20111
- right: 8px;
20109
+ grid-area: 1 / 1;
20110
+ place-self: start end;
20111
+ margin: 8px;
20112
20112
  display: flex;
20113
20113
  align-items: center;
20114
20114
  justify-content: center;