Merge pull request #36 from ayoayco/style/list-and-address-bar-adjustments

style: list and address bar adjustments
This commit is contained in:
Ayo Ayco 2023-06-12 22:18:29 +02:00 committed by GitHub
commit 201e1f5639
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 22 deletions

View file

@ -11,7 +11,7 @@ const form = new FormGroup([
{ {
name: "url", name: "url",
value: url, value: url,
placeholder: "Put the URL here", placeholder: "Type a URL here",
validators: [Validators.required, Validators.minLength(11)], validators: [Validators.required, Validators.minLength(11)],
}, },
]); ]);
@ -37,7 +37,6 @@ const form = new FormGroup([
<style lang="scss"> <style lang="scss">
.address-bar { .address-bar {
background-color:antiquewhite;
text-align: center; text-align: center;
padding: 0.5em; padding: 0.5em;
width: 100%; width: 100%;
@ -61,12 +60,13 @@ const form = new FormGroup([
:global(input) { :global(input) {
width: 100%; width: 100%;
max-width: var(--cozy-width);
text-align: center; text-align: center;
border: 0px; border: 0px;
border-radius: 5px; border-radius: 5px;
padding: 0.5rem; padding: 0.5rem;
} background-color: #f5f5f5;
:global(input[type="text"]) { box-shadow: 0 1px 3px 1px #ccc;
border: 2px solid brown; cursor: pointer;
} }
</style> </style>

View file

@ -7,6 +7,7 @@ export interface Props {
const {postDivSelector, skipSave = false} = Astro.props; const {postDivSelector, skipSave = false} = Astro.props;
--- ---
<div id="library"> <div id="library">
<span id="heading"></span>
<ul id="post-list"></ul> <ul id="post-list"></ul>
</div> </div>
@ -32,6 +33,9 @@ const {postDivSelector, skipSave = false} = Astro.props;
const list = document.querySelector('#post-list'); const list = document.querySelector('#post-list');
if(cachedRequests?.length) { if(cachedRequests?.length) {
const heading = document.querySelector('#library span#heading') as HTMLHeadingElement;
heading.innerHTML = 'History';
cachedRequests cachedRequests
// temporary delete all cached errors // temporary delete all cached errors
.filter(request => { .filter(request => {
@ -79,18 +83,18 @@ const {postDivSelector, skipSave = false} = Astro.props;
<style lang="scss"> <style lang="scss">
#library { #library {
:global(h2) { :global(span#heading) {
text-align: center; color: #555;
font-size: small;
text-transform: uppercase;
} }
} }
#post-list { #post-list {
:global(li) { :global(li) {
list-style: none; list-style: none;
display: block;
float: left;
width: calc(100% + 40px); width: calc(100% + 40px);
margin-left: -40px; margin-left: -40px;
border-bottom: 1px solid #eee;
:global(a) { :global(a) {
text-decoration: none; text-decoration: none;
@ -101,12 +105,10 @@ const {postDivSelector, skipSave = false} = Astro.props;
} }
:global(.post-card) { :global(.post-card) {
padding: 1rem 0; padding-top: 1rem;
:global(.post-card__image) { :global(.post-card__image) {
float: left; float: left;
margin-right: 0.5rem; margin: 0.25rem 0.5rem 0.25rem 0;
margin: 0.25rem 1rem 0.25rem 0;
:global(img, svg) { :global(img, svg) {
width: 70px; width: 70px;

View file

@ -40,21 +40,18 @@ const { meta } = Astro.props;
<style> <style>
#main-content { #main-content {
max-width: 600px; max-width: var(--cozy-width);
margin: 0 auto; margin: 0 auto;
} padding: 0 1em 1em;
#main-content * {
margin: 1rem 0 0;
padding: 0 0.5rem;
} }
</style> </style>
<style is:global lang="scss"> <style is:global lang="scss">
:root { :root {
--cozy-width: 600px;
--system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, --system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
} }
html * { html * {
font-family: var(--system-ui); font-family: var(--system-ui);
} }