fixing scroll to top button and horizontal scrolling

This commit is contained in:
Nasir Anthony Montalvo
2026-03-09 00:20:47 -05:00
parent cfc9616319
commit 1eb1746311
2 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
# This is an example configuration file
# To learn more, see the full config.yaml reference: https://docs.continue.dev/reference
name: Example Config
version: 1.0.0
schema: v1
# Define which models can be used
# https://docs.continue.dev/customization/models
models:
- name: my gpt-5
provider: openai
model: gpt-5
apiKey: YOUR_OPENAI_API_KEY_HERE
- uses: ollama/qwen2.5-coder-7b
- uses: anthropic/claude-4-sonnet
with:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
# MCP Servers that Continue can access
# https://docs.continue.dev/customization/mcp-tools
mcpServers:
- uses: anthropic/memory-mcp

View File

@@ -1234,12 +1234,11 @@ object {
height: auto; height: auto;
} }
@media (max-width: 768px) { body {
body { @media (max-width: 768px) {
overflow-x: hidden; touch-action: pan-y;
max-width: 100vw; overflow-x: hidden;
min-width: 0; }
}
} }
figure { figure {