argos/dmp-frontend/src/app/user-workspace/user-workspace.component.html

26 lines
693 B
HTML

<ul class="nav nav-tabs">
<li class="active">
<a href="#my-dmps" data-toggle="tab">My DMPs</a>
</li>
<li>
<a href="#all-projects" data-toggle="tab">Projects</a>
</li>
</ul>
<div class="tab-content clearfix">
<div class="tab-pane active" id="my-dmps">
<dmps></dmps>
</div>
<div class="tab-pane" id="all-projects">
<projects></projects>
</div>
<div class="tab-pane" id="3a">
<h3>We applied clearfix to the tab-content to rid of the gap between the tab and the content</h3>
</div>
<div class="tab-pane" id="4a">
<h3>We use css to change the background color of the content to be equal to the tab</h3>
</div>
</div>