Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EnvelopePrimaryActions.vue « components « src - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8d811120a821db0351c2e055c596387c4559903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<template>
	<ul class="list-item-content__actions--primary">
		<slot />
	</ul>
</template>

<script>
export default {
	name: 'EnvelopePrimaryActions',
}
</script>

<style>
.list-item-content__actions--primary {
	display: flex;
	justify-content: space-between;
}

.list-item-content__actions--primary .action--primary:first-child {
	padding-left: 5px;
}

.list-item-content__actions--primary .action--primary:last-child {
	padding-right: 5px;
}

.list-item-content__actions--primary .action--primary .action-button {
	align-items: center;
	flex-direction: column;
	padding: 10px 10px 0 10px;
}

.list-item-content__actions--primary .action--primary .action-button__text,
.list-item-content__actions--primary .action--primary .action-button__icon {
	height: auto;
}
</style>