mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-22 05:46:26 -08:00
work
This commit is contained in:
parent
8e00c714ae
commit
f634fb2484
|
@ -1,5 +1,6 @@
|
||||||
@use "../base";
|
@use "../base";
|
||||||
@use "pulldown/faq";
|
@use "pulldown/faq";
|
||||||
|
@use "pulldown/accounts";
|
||||||
|
|
||||||
#overlay {
|
#overlay {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
|
|
17
src/style/app/pulldown/accounts.scss
Normal file
17
src/style/app/pulldown/accounts.scss
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
.pulldown_display[name=accounts] {
|
||||||
|
.notLoggedIn {
|
||||||
|
|
||||||
|
text-align:center;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-weight:600;
|
||||||
|
font-size:24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flavor {
|
||||||
|
font-size:14px;
|
||||||
|
color:#999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,22 @@
|
||||||
.pulldown_display[name=faq] {
|
.pulldown_display[name=faq] {
|
||||||
|
|
||||||
|
overflow-y:auto;
|
||||||
|
|
||||||
.faqGroup {
|
.faqGroup {
|
||||||
h2 {}
|
padding:10px;
|
||||||
p {}
|
|
||||||
|
h2 {
|
||||||
|
font-weight: 400;
|
||||||
|
color:#DDDDDD;
|
||||||
|
font-size:16px;
|
||||||
|
margin:0 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color:#999999;
|
||||||
|
font-size:16px;
|
||||||
|
margin:0 0 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -2,6 +2,9 @@
|
||||||
import Pulldown from "./Pulldown.svelte"
|
import Pulldown from "./Pulldown.svelte"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Pulldown>
|
<Pulldown name="accounts">
|
||||||
<p>accs</p>
|
<div class="notLoggedIn">
|
||||||
|
<h1>monofile <span style:color="#999999">accounts</span></h1>
|
||||||
|
<p class="flavor">Gain control of your uploads.</p>
|
||||||
|
</div>
|
||||||
</Pulldown>
|
</Pulldown>
|
|
@ -3,15 +3,19 @@
|
||||||
|
|
||||||
let faq = [
|
let faq = [
|
||||||
{
|
{
|
||||||
question : "test",
|
question : "Are my files compressed on upload?",
|
||||||
answer : "abc"
|
answer : "No. Files should stay completely unchanged on download."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question : "How do I replace a file that I have previously uploaded?",
|
||||||
|
answer : "You can modify the content of a file that is linked to a file ID by reuploading the file using the same custom ID."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Pulldown name="faq">
|
<Pulldown name="faq">
|
||||||
{#each faq as question}
|
{#each faq as question}
|
||||||
<div style="faqGroup">
|
<div class="faqGroup">
|
||||||
<h2>{question.question}</h2>
|
<h2>{question.question}</h2>
|
||||||
<p>{question.answer}</p>
|
<p>{question.answer}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
</script>
|
</script>
|
||||||
<div
|
<div
|
||||||
class="pulldown_display"
|
class="pulldown_display"
|
||||||
name=name
|
name={name}
|
||||||
transition:fade={{duration:200}}
|
transition:fade={{duration:200}}
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
|
Loading…
Reference in a new issue