repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /* App layout styles */ |
| #2 | .app { |
| #3 | min-height: 100vh; |
| #4 | display: flex; |
| #5 | flex-direction: column; |
| #6 | } |
| #7 | |
| #8 | .app-header { |
| #9 | background-color: var(--surface-color); |
| #10 | padding: 1rem 2rem; |
| #11 | border-bottom: 1px solid var(--border-color); |
| #12 | box-shadow: var(--shadow); |
| #13 | display: flex; |
| #14 | align-items: center; |
| #15 | gap: 1rem; |
| #16 | } |
| #17 | |
| #18 | .header-logo { |
| #19 | height: 36px; |
| #20 | width: auto; |
| #21 | } |
| #22 | |
| #23 | .app-header h1 { |
| #24 | font-size: 1.5rem; |
| #25 | font-weight: 600; |
| #26 | color: var(--text-primary); |
| #27 | } |
| #28 | |
| #29 | .app-main { |
| #30 | flex: 1; |
| #31 | padding: 2rem; |
| #32 | max-width: 1200px; |
| #33 | margin: 0 auto; |
| #34 | width: 100%; |
| #35 | } |
| #36 | |
| #37 | /* Responsive adjustments */ |
| #38 | @media (max-width: 768px) { |
| #39 | .app-header { |
| #40 | padding: 1rem; |
| #41 | } |
| #42 | |
| #43 | .app-main { |
| #44 | padding: 1rem; |
| #45 | } |
| #46 | } |
| #47 |