Compare commits

..

1 Commits

3 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
default: true
MD010: false # Ignore tabs in code blocks
MD013: false # Don't wrap lines by default
MD046:
style: 'fenced' # Force fenced code blocks
MD046:
style: "fenced" # Force fenced code blocks

View File

@ -339,6 +339,13 @@ class TfElement extends LitElement {
};
let tabs = html`
<style>
@media only screen and (max-width: 650px) {
.hide-on-small-screens {
display: none;
}
}
</style>
<div class="w3-bar w3-theme-l1">
${Object.entries(k_tabs).map(
([k, v]) => html`
@ -351,6 +358,7 @@ class TfElement extends LitElement {
@click=${() => self.set_tab(v)}
>
${k}
<span class="hide-on-small-screens">${v}</span>
</button>
`
)}

View File

@ -4,17 +4,9 @@
- Clone your repository
1. Alternatively, you can add a remote called `fork`:
Alternatively, you can change the `origin` remote on your existing clone:
`git remote add fork https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
You'll need to set your branch's upstream to `fork`:
`git push --set-upstream fork my-branch`
2. or you can change the `origin` remote on your existing clone altogether:
`git remote set-url origin https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
`git remote set-url origin https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
- Make your changes