remcodex 0.1.0-beta.1 → 0.1.0-beta.11

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/web/styles.css CHANGED
@@ -1394,13 +1394,16 @@ button:hover {
1394
1394
 
1395
1395
  .approval-banner {
1396
1396
  display: grid;
1397
+ grid-template-rows: minmax(0, 1fr) auto;
1397
1398
  gap: 0.6rem;
1398
1399
  margin-bottom: 0.7rem;
1399
1400
  padding: 0.72rem 0.82rem;
1401
+ max-height: min(46dvh, 24rem);
1400
1402
  border-radius: 14px;
1401
1403
  border: 1px solid rgba(188, 90, 48, 0.16);
1402
1404
  background: rgba(255, 248, 238, 0.96);
1403
1405
  box-shadow: 0 6px 16px rgba(169, 77, 38, 0.06);
1406
+ overflow: hidden;
1404
1407
  }
1405
1408
 
1406
1409
  .approval-banner[aria-busy="true"] {
@@ -1411,6 +1414,14 @@ button:hover {
1411
1414
  .approval-banner-copy {
1412
1415
  display: grid;
1413
1416
  gap: 0.28rem;
1417
+ min-height: 0;
1418
+ overflow-y: auto;
1419
+ overflow-x: hidden;
1420
+ overscroll-behavior: contain;
1421
+ scrollbar-gutter: stable;
1422
+ -webkit-overflow-scrolling: touch;
1423
+ touch-action: pan-y;
1424
+ padding-right: 0.18rem;
1414
1425
  }
1415
1426
 
1416
1427
  .approval-banner-head {
@@ -1496,6 +1507,9 @@ button:hover {
1496
1507
  display: flex;
1497
1508
  gap: 0.55rem;
1498
1509
  flex-wrap: wrap;
1510
+ flex-shrink: 0;
1511
+ padding-top: 0.15rem;
1512
+ border-top: 1px solid rgba(188, 90, 48, 0.12);
1499
1513
  }
1500
1514
 
1501
1515
  .approval-banner-actions .primary-button,
@@ -5104,6 +5118,13 @@ button:hover {
5104
5118
  padding-right: env(safe-area-inset-right, 0px);
5105
5119
  }
5106
5120
 
5121
+ .composer-panel:has(#session-approval-slot .approval-banner) {
5122
+ max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 3rem);
5123
+ overflow-y: auto;
5124
+ overscroll-behavior: contain;
5125
+ -webkit-overflow-scrolling: touch;
5126
+ }
5127
+
5107
5128
  .composer-dock {
5108
5129
  max-width: 100%;
5109
5130
  }
@@ -5112,6 +5133,7 @@ button:hover {
5112
5133
  gap: 0.45rem;
5113
5134
  margin-bottom: 0.45rem;
5114
5135
  padding: 0.56rem 0.62rem;
5136
+ max-height: min(40dvh, 18rem);
5115
5137
  }
5116
5138
  }
5117
5139
 
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 RemCodex contributors
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.