% Generated by roxygen2: do not edit by hand % Please edit documentation in R/components.R \name{bulma_sidenote} \alias{bulma_sidenote} \title{Bulma Message as a Sidenote} \usage{ bulma_sidenote( ..., side = c("right", "left"), header = NULL, color = NULL, size = c("small", "normal", "medium", "large"), width = "one-third", delete = FALSE, column_class = NULL ) } \arguments{ \item{...}{ Arguments passed on to \code{\link[=bulma_message]{bulma_message}} \describe{ \item{\code{header}}{Message header} \item{\code{delete}}{Should delete button be displayed in upper right corner?} \item{\code{size}}{Text size, one of \code{"small"}, \code{"normal"} (default), \code{"medium"}, or \code{"large"}.} \item{\code{width}}{Width of the message. If \code{NULL} then width is 100\% of container. If specified, the message is wrapped in a \code{column} div (see \code{\link[=bulma_column]{bulma_column()}} for more information and for valid column sizes).} \item{\code{centered}}{Should the message container be centered horizontally? Requires \code{width} to be specified. If \code{TRUE}, the message container is inside a \code{column} div inside a \code{columns} div.} \item{\code{column_class}}{Additional parameters passed to the \code{class} argument of the \code{column} div. Only used if \code{width} is specified.} }} \item{side}{Should the sidenote be pulled to the left or the right?} } \description{ Creates a message block as a sidenote, pulled either left or right. } \examples{ bulma_sidenote("A sidenote!", side = "left", color = "info") bulma_sidenote("A sidenote!", side = "right", color = "info", header = "Title") } \seealso{ \code{\link[=bulma_message]{bulma_message()}} Other Bulma components: \code{\link{bulma_message}()} } \concept{Bulma components}