Update
This commit is contained in:
40
Server/app/svelte/src/components/cookies-dialog.svelte
Normal file
40
Server/app/svelte/src/components/cookies-dialog.svelte
Normal file
@@ -0,0 +1,40 @@
|
||||
<svelte:options tag="cookies-dialog" />
|
||||
|
||||
<script>
|
||||
|
||||
// Import libraries
|
||||
import { onMount } from 'svelte'
|
||||
|
||||
//Export
|
||||
|
||||
// Main code
|
||||
|
||||
|
||||
onMount(() => {
|
||||
|
||||
})
|
||||
</script>
|
||||
|
||||
<div id="wrapper">
|
||||
<div>
|
||||
<p>We use cookies to improve your experience, personalise your content and analyse site usage. By clicking “OK”, you agree to the use of cookies.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<style>
|
||||
|
||||
@import '/css/common.css';
|
||||
|
||||
#wrapper {
|
||||
display: none;
|
||||
position: relative;
|
||||
height: 5rem;
|
||||
width: 100%;
|
||||
background: white;
|
||||
box-shadow: 0 0 0.314rem rgb(187, 187, 187);;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
Reference in New Issue
Block a user