Skip to content
Snippets Groups Projects
Commit b5add09b authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files
parents 379f3a5c 3112c2ba
No related branches found
No related tags found
No related merge requests found
Pipeline #456606 failed
...@@ -89,22 +89,8 @@ ...@@ -89,22 +89,8 @@
.bfh-slider{ .bfh-slider{
width: 100em !important; width: 100em !important;
max-width: 250px !important; max-width: 250px !important;
} }
.sidebar, #eng-sidebar {
display: block; /* Sicherstellen, dass die Sidebar sichtbar ist */
width: 100%; /* Die Sidebar nimmt die volle Breite ein */
position: relative; /* Sidebar bleibt relativ zum Inhalt */
padding: 10px; /* Etwas Abstand für die Sidebar */
background-color: #f8f9fa; /* Beispiel Hintergrundfarbe */
z-index: 1000; /* Sicherstellen, dass es über dem Inhalt bleibt */
}
/* Hauptinhalt unter der Sidebar */
.content {
width: 100%; /* Der Inhalt nimmt die volle Breite ein */
margin-top: 20px; /* Etwas Platz unter der Sidebar */
}
}
.tag{ .tag{
width: min-content !important; width: min-content !important;
...@@ -198,8 +184,8 @@ body { ...@@ -198,8 +184,8 @@ body {
.row{ .row{
display: grid !important; display: grid !important;
} }
} }
/*For small Smartphones*/ /*For small Smartphones*/
@media screen and (max-width: 750px){ @media screen and (max-width: 750px){
......
import H1 from "../components/Headings"; import H2 from "../components/Headings";
import { useTabNavigation } from "../utils/TabNavigation"; import { useTabNavigation } from "../utils/TabNavigation";
export function Notebook() { export function Notebook() {
useTabNavigation(); useTabNavigation();
return ( return (
<> <div>
<div className="row mt-4"> <H2 text="Lab journals"/>
<div className="col-lg-8"> <div className='row'>
<strong> <div className="col">
<H1 text="Ich bin ein Header!"/> <figure>
</strong> <img src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/meth-patch-clamp/bild-meth-patch-clamp.png" alt="Text test"/>
<i> <figcaption><b>Figure 1.</b> Text test</figcaption>
<p> Ich bin ein Paragraph. </p> </figure>
</i> </div>
<div className="col">
<figure>
<img src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/meth-patch-clamp/bild-meth-patch-clamp.png" alt="Text2"/>
<figcaption><b>Figure 2.</b> Text2</figcaption>
</figure>
</div> </div>
</div> </div>
</> </div>
); );
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment