ソースを参照

Fix a couple minor bugs

master
コミット
e950607909
3個のファイルの変更4行の追加4行の削除
  1. +1
    -1
      R/columns.R
  2. +2
    -2
      R/layout_level.R
  3. +1
    -1
      man/bulma_column_options.Rd

+ 1
- 1
R/columns.R ファイルの表示

@@ -86,7 +86,7 @@ is_bulma_column <- function(x) inherits(x, "bulma_column")
#'
#' @inheritParams bulma_column
#' @examples
#' bulma_column_options(size = "one-half", offset = "one-quarter")
#' bulma_column_options(size = "half", offset = "one-quarter")
#'
#' @export
bulma_column_options <- function(size = NULL, width = NULL, offset = NULL, narrow = NULL,

+ 2
- 2
R/layout_level.R ファイルの表示

@@ -16,12 +16,12 @@ bulma_level <- function(
item = level_item,
header = level_item_header
)
tag_f <- tag_function(container_tag)
tag_f <- tag_function(match.arg(container_tag))
x <- tag_f(
class = paste("level", if (is_mobile) "is-mobile"),
level_side(left),
level_item_f(...),
level_side(right)
level_side(right, "right")
)

x

+ 1
- 1
man/bulma_column_options.Rd ファイルの表示

@@ -26,6 +26,6 @@ bulma_column_options(size = NULL, width = NULL, offset = NULL,
Bulma Column Options
}
\examples{
bulma_column_options(size = "one-half", offset = "one-quarter")
bulma_column_options(size = "half", offset = "one-quarter")

}

読み込み中…
キャンセル
保存